summaryrefslogtreecommitdiff
path: root/gnu/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Updates for 5.4.Ken Smith2005-04-031-2/+2
| | | | Notes: svn path=/stable/5/; revision=144579
* MFC kgdb.1 (1.7), main.c (1.6):Marcel Moolenaar2005-03-142-6/+46
| | | | | | | | | | | Implement and document the -q and -f options with their corresponding long form (-quiet and -fullname resp.) PR: bin/78031 Approved by: re (kensmith) Notes: svn path=/stable/5/; revision=143606
* MFC: rev 1.5: modify SRCS organization.David E. O'Brien2005-03-021-35/+43
| | | | Notes: svn path=/stable/5/; revision=142978
* MFC: Implement the EMACS-inspired -a option to bump the annotation_level.David E. O'Brien2005-03-022-2/+15
| | | | Notes: svn path=/stable/5/; revision=142970
* MFC: revs 1.3-5 (minus '-a' addition): Don't abuse 'Ar', mdoc fixes, andDavid E. O'Brien2005-03-011-5/+61
| | | | | | | document all options and general usage. Notes: svn path=/stable/5/; revision=142953
* MFC: Properly initialize kgdb to recognize what ABI to use on amd64 ↵David E. O'Brien2005-03-019-24/+217
| | | | | | | | | | | platform. Display PID and process name as a part of the 'info threads' output. Introduce new commands 'tid <tid>' and 'proc <pid>' to accompany gdb's default 'thread <thread num>' to make the task of switching between different contexts easier. Notes: svn path=/stable/5/; revision=142952
* MFC: use the system gnuregex library vs. building GNU regex bits into libiberty.David E. O'Brien2005-03-015-8/+13
| | | | Notes: svn path=/stable/5/; revision=142950
* MFC: For variables that are only checked with defined(), don't provideDavid E. O'Brien2005-02-1327-28/+28
| | | | | | | any fake value. Notes: svn path=/stable/5/; revision=141786
* MFC: rev. 1.4Christian Brueffer2005-02-081-1/+1
| | | | | | | | | Scheduled mdoc(7) sweep. Original revision by: ru Notes: svn path=/stable/5/; revision=141518
* MFC: libpam is now standard.Ruslan Ermilov2005-01-251-1/+0
| | | | Notes: svn path=/stable/5/; revision=140806
* MFC version 1.9:Peter Edwards2005-01-211-3/+7
| | | | | | | Fix thread support in corefiles. Notes: svn path=/stable/5/; revision=140579
* MFC r1.17:Ceri Davies2005-01-121-0/+1
| | | | | | | Add a usb category for USB PRs. Notes: svn path=/stable/5/; revision=140131
* MFC: Uncomment entries for FreeBSD 4.11, 5.4, and 6.0.Ruslan Ermilov2004-12-181-3/+3
| | | | | | | Thanks to: jkoshy Notes: svn path=/stable/5/; revision=139008
* MFC: 1.42: FreeBSD 4.11 and FreeBSD 6.0.Ruslan Ermilov2004-12-171-0/+2
| | | | Notes: svn path=/stable/5/; revision=138963
* MFC 1.26: Correct the name of the --line-buffered option.Giorgos Keramidas2004-11-161-2/+3
| | | | Notes: svn path=/stable/5/; revision=137771
* MFC: Unbreak c++filt and reconnect it to the build.Alexander Kabaev2004-11-092-9/+2
| | | | Notes: svn path=/stable/5/; revision=137427
* MFC r1.36:Ceri Davies2004-11-091-1/+1
| | | | | | | | Use a safe temporary file for saving out the PR if send-pr is interrupted. Notes: svn path=/stable/5/; revision=137420
* MFC rev. 1.3:Marcel Moolenaar2004-11-071-1/+1
| | | | | | | | | | | | | If the argument to the -r flag starts with a ':' or a '|', don't try to make sure it is a device. GDB special cases these prefixes and treats :#### as a tcp port on localhost and executes what ever follows '|'. This allows kgdb to debug via dconschat. Credits to: brooks Notes: svn path=/stable/5/; revision=137354
* Update the mdoc to reflect 5.3Scott Long2004-10-241-1/+1
| | | | | | | Approved by: re Notes: svn path=/stable/5/; revision=136870
* MFC: fix cvsbug to actually work, fix the version number cvs reports.Peter Wemm2004-10-062-3/+8
| | | | | | | Approved by: re (scottl) Notes: svn path=/stable/5/; revision=136204
* MFC: Makefile.inc1,v 1.440 and gnu/usr.bin/cc/cc_tools/Makefile,v 1.80.Ruslan Ermilov2004-09-221-10/+0
| | | | | | | | | | Ensure that .depend file in cc_tools has correct libraries and headers (host versions, not target). Approved by: re (kensmith) Notes: svn path=/stable/5/; revision=135567
* MFC: Add code to support statically linked binary and .core file ofDavid Xu2004-09-041-197/+377
| | | | | | | | | threaded program. Approved by: re (scottl) Notes: svn path=/stable/5/; revision=134752
* MFC: Only compile fbsd-thread.c on amd64 and i386.David Xu2004-09-041-1/+5
| | | | | | | Approved by: re (scottl) Notes: svn path=/stable/5/; revision=134751
* Set vendor to a non-fun, but non-controversial one for the release.David E. O'Brien2004-08-232-3/+3
| | | | | | | Approved by: re(kensmith) Notes: svn path=/stable/5/; revision=134197
* Improve the usage. Without any arguments, kgdb(1) works on /dev/memMarcel Moolenaar2004-08-152-49/+126
| | | | | | | | | | | | with the currently running kernel image. Otherwise, one of -c, -n or -r is expected for working on a particular core file (-c), working on a saved dump (-n) or working remotely (-r). When working on a saved dump, a kernel may be omitted. For a remote debugging session (-r), kgdb(1) will use the specified device. Notes: svn path=/head/; revision=133739
* Bring in fix from gzip 1.3.3 to avoid crashes when processing certain corruptTim J. Robbins2004-08-131-6/+8
| | | | | | | | | | | | | | | input files: 1999-06-25 Paul Eggert <eggert@twinsun.com> * inflate.c (huft_build): Set n to length of v, to detect improper tables. Don't accidentally grow j past z. MFC after: 3 days Notes: svn path=/head/; revision=133610
* Consolidate libiberty files in one place and avoid listing someAlexander Kabaev2004-08-122-15/+12
| | | | | | | | | of them in several places. Noticed by: bsdimp Notes: svn path=/head/; revision=133581
* Change version string to distinguish our modified version of GNU grepTim J. Robbins2004-08-121-1/+1
| | | | | | | from the original. Notes: svn path=/head/; revision=133552
* Update version strings to better reflect reality.Tim J. Robbins2004-08-121-3/+3
| | | | Notes: svn path=/head/; revision=133551
* Hook xalloc-die.c up to the build.Tim J. Robbins2004-08-121-0/+1
| | | | Notes: svn path=/head/; revision=133549
* Initialize thread_db module.David Xu2004-08-101-0/+2
| | | | Notes: svn path=/head/; revision=133432
* Initialize thread_db module.David Xu2004-08-081-0/+2
| | | | Notes: svn path=/head/; revision=133346
* 1. Add some code check if thread suspending or resuming is failed.David Xu2004-08-082-4/+80
| | | | | | | 2. Add code to retrieve thread tls address. Notes: svn path=/head/; revision=133345
* Join the 21st century: Cryptography is no longer an optional componentColin Percival2004-08-061-1/+0
| | | | | | | | | | | | | of releases. The -DNOCRYPT build option still exists for anyone who really wants to build non-cryptographic binaries, but the "crypto" release distribution is now part of "base", and anyone installing from a release will get cryptographic binaries. Approved by: re (scottl), markm Discussed on: freebsd-current, in late April 2004 Notes: svn path=/head/; revision=133196
* Whitespace nit.Ruslan Ermilov2004-08-031-1/+1
| | | | | | | OK'ed by: kan Notes: svn path=/head/; revision=133057
* Fix a copy and paste error. Do not include errors.c in libgcc_int.a,Alexander Kabaev2004-07-301-1/+1
| | | | | | | | | it is only used by build tools. Submitted by: grehan Notes: svn path=/head/; revision=132887
* Add NO_WERROR here. Binutils as does not compile cleanly with GCC 3.4.x.Alexander Kabaev2004-07-281-0/+1
| | | | Notes: svn path=/head/; revision=132754
* Bmake glue for GCC 3.4.2-prerelease.Alexander Kabaev2004-07-2817-648/+675
| | | | Notes: svn path=/head/; revision=132751
* Hook kgdb into the build.Marcel Moolenaar2004-07-251-1/+1
| | | | Notes: svn path=/head/; revision=132625
* Add the beginnings of kernel debugging support. the kgdb(1) toolMarcel Moolenaar2004-07-2511-0/+1089
| | | | | | | | | | | | | | | | | | | | | | | | is basicly a shell on top of libgdb that knows about kernel threads, kernel modules and kvm(3). As the word "beginnings" implies, not all of the features have been implemented yet. The tool is useful and I'd like feedback on the taken route. The simplest way to debug a kernel core file is: kgdb -n 0 This opens /var/crash/vmcore.0 with the corresponding kernel in the object directory (kernel.debug is used if it exists). Typical things that need to be added are: o Auto loading of kernel modules, o Handling of trapframes so that backtraces can be taken across them, o Some fancy commands to extract useful information out of a core file, o Various (probably many) other things. Notes: svn path=/head/; revision=132624
* o ps_pd{read|write} and ps_pt{read|write} are obsolete interfaceMarcel Moolenaar2004-07-171-22/+2
| | | | | | | | functions. Only ps_p{read|write} remains. o Remove ps_getpid. We don't need it now. Notes: svn path=/head/; revision=132300
* Make bsdtar the default system tar. This makes /usr/bin/tar a symlinkTim Kientzle2004-07-171-1/+1
| | | | | | | | pointing to /usr/bin/bsdtar by default. To make it point to /usr/bin/gtar, you can define WITH_GTAR. Notes: svn path=/head/; revision=132281
* ptrace's first parameter is command not pid. pointy hat to me.David Xu2004-07-161-2/+6
| | | | Notes: svn path=/head/; revision=132244
* Update config.h to account for the prgregset_t and psaddr_t typesMarcel Moolenaar2004-07-165-10/+10
| | | | | | | | | that have been added to <sys/procfs.h>. This change has no effect because the source file that would be affected is not compiled on FreeBSD. Hence, this is for completeness only. Notes: svn path=/head/; revision=132238
* Add libthread_db assisted debugging support module.David Xu2004-07-151-0/+1095
| | | | Notes: svn path=/head/; revision=132179
* MAJOR cleanup of the Bmake framework.David E. O'Brien2004-07-0837-23474/+161
| | | | | | | | | | | | This includes removing all vestiges of the old not-really supported ability to build cross tools targeting non-FreeBSD systems, such as m68k Lynx and NetBSD. Move as much duplicated code from platform Makefiles into the shared Makefiles. Add a simple mechanism for specifying ELF 'ldscripts'. Also share as many .h files as possible (now a single bfd.h vs. one per platform). Notes: svn path=/head/; revision=131832
* Build things in dictionary order.Ruslan Ermilov2004-07-071-14/+34
| | | | Notes: svn path=/head/; revision=131746
* Prepare for upcoming Binutils house cleaning.David E. O'Brien2004-07-061-1/+1
| | | | Notes: svn path=/head/; revision=131727
* Fix bug causing `[' to be wrongly included in character class expressionsTim J. Robbins2004-07-041-1/+1
| | | | | | | | | in some multibyte locales (Red Hat bug #108484). Obtained from: Fedora (Tim Waugh) Notes: svn path=/head/; revision=131578
* Make grep run much (~10x) faster in multibyte locales by caching the wideTim J. Robbins2004-07-046-74/+188
| | | | | | | | | | character representation of input data across calls to dfaexec(), and by caching the lengths of character across calls to check_multibyte_string(). Obtained from: Fedora (Tim Waugh) Notes: svn path=/head/; revision=131576