summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin
Commit message (Collapse)AuthorAgeFilesLines
* Don't try to enable event reporting for core file, it is not writable.davidxu2005-05-061-0/+2
|
* Capitalize words in library description.jkoshy2005-04-191-1/+1
| | | | Submitted by: ru
* Bring a working snapshot of hwpmc(4), its associated libraries, userland ↵jkoshy2005-04-191-0/+1
| | | | | | | | | | utilities and documentation into -CURRENT. Bump FreeBSD_version. Reviewed by: alc, jhb (kernel changes)
* Report events from thread library.davidxu2005-04-121-16/+210
|
* Print thread address.davidxu2005-04-051-4/+4
| | | | PR: threads/76821
* Stop building gtar. Bump __FreeBSD_version to reflect this change.kientzle2005-03-211-1/+0
|
* Ooops. Correctly disable "tar"->"gtar" link.kientzle2005-03-211-3/+0
| | | | | Thanks to: Simon L. Nielsen, who was the first of several people to point this out. <sigh>
* Deorbit gtar, step 1: Remove WITH_GTAR knob.kientzle2005-03-201-2/+0
| | | | | | | "tar" is now always a synonym for "bsdtar". People who need gtar can access it as "gtar." Approved by: No objections on arch@
* Implement and document the -q and -f options with their correspondingmarcel2005-03-022-6/+46
| | | | | | | long form (-quiet and -fullname resp.) Bump documentation date. PR: bin/78031 MFC after: 5 days
* .It the -v option.obrien2005-03-011-1/+1
|
* Restore r1.2 change to use TARGET_ARCH.kan2005-02-201-1/+1
| | | | Submitted by: kris
* Attempt to make kgdb little more useful and easy to use. Properly initializekan2005-02-2010-25/+218
| | | | | | | | it to recognise what ABI to use on amd64 (and possibly others) platform. Display PID and process name as a part of the 'info threads' output, TIDs alone are too confusing. Introduce new commmands 'tid <tid>' and 'proc <pid>' to accompany gdb's default 'thread <thread num>' to make the task of switching between different contexts easier.
* Remove mention of the -k and -wcore options because they don'tmarcel2005-02-151-14/+0
| | | | | | | | exist anymore. PR: doc/70943 Submitted by: Jun <junsu at delphij dot net> Reviewed by: delphij
* Use the system gnuregex library vs. building GNU regex bits into libibertyobrien2005-02-145-7/+12
| | | | | | | and using them. Reviewed by: marcel,imp Desired by: ache
* Fix regression in output with -R compared to previous version.obrien2005-02-131-1/+1
| | | | | PR: 77466 Submitted by: Andre Guibert de Bruet <andy@siliconlandmark.com>
* Expand *n't contractions.ru2005-02-133-11/+11
|
* libpam is now standard.ru2005-01-251-1/+0
|
* Sort sections.ru2005-01-181-5/+5
|
* Fold two ENVIRONMENT sections into one.ru2005-01-181-32/+33
|
* Added the EXIT STATUS section where appropriate.ru2005-01-171-1/+1
|
* Markup nits.ru2005-01-131-4/+3
|
* When grabbing registers for an lwp, fake the inferior's pid using thepeadar2005-01-111-2/+6
| | | | | | | | | | | | | lwp ID before invoking the underlying target operation. For corefiles, we rely on gdb internals to do this, and it uses the pid as an index, rather than the lwpid, so previously, backtraces for multithreaded core files wasn't working correctly. For processes, we currently use ptrace directly, so fixup that code to also use the pid directly. Discussed With: marcel, davidxu MFC After: 4 days
* Scheduled mdoc(7) sweep.ru2005-01-091-1/+1
|
* Add a usb category for USB PRs.ceri2005-01-051-0/+1
| | | | | Requested by: Craig Rodrigues on behalf of usb@ MFC After: 1 day
* A lot of people may want to submit PRs from systems that are notkeramida2004-12-291-0/+7
| | | | | | | | | | connected to the Internet or systems that do not have a correctly configured email subsystem. Now that the send-pr web interface has antispam protection, mention that it is ok to use it for submitting problem reports. Ok by: linimon Submitted by: Rob <spamrefuse@yahoo.com> on freebsd-doc
* NOCRYPT -> NO_CRYPTru2004-12-211-1/+1
|
* NOSHARED -> NO_SHAREDru2004-12-219-9/+9
|
* Start the dreaded NOFOO -> NO_FOO conversion.ru2004-12-2120-20/+20
| | | | OK'ed by: core
* Uncomment an upcoming 5.4-RELEASE.ru2004-12-181-1/+1
|
* Uncomment entries for FreeBSD 6.0 and 4.11.jkoshy2004-12-181-2/+2
| | | | Requested by: ru
* Add removal of MKTEMP_SH_FUNCTION to processing for cvsbug script.kensmith2004-12-101-0/+1
| | | | | Approved by: peter (a while ago) MFC After: 1 week
* Source changes to allow building a cross-debugger. Move solib.c andmarcel2004-12-0516-5/+29
| | | | | | | | solib-svr4.c to the MD makefiles because they are native files for alpha and sparc64, but target files for amd64, i386 and ia64. Note that kgdb(1) does not yet build as a cross-debugger due to libkvm.
* Fix previous commit. GDB_CROSS_DEBUGGER needs to be defined for allmarcel2004-12-052-9/+5
| | | | subdirectories.
* Makefile (only) changes to allow building a cross debugger.marcel2004-11-3010-21/+50
|
* s/MACHINE_ARCH/TARGET_ARCH/. We use TARGET_ARCH to pick the MD filesmarcel2004-11-301-1/+1
| | | | for libgdb and should do so here as well.
* [Sorry, forgot to commit my source changes in my previous commit.]joerg2004-11-221-2/+5
| | | | | | | | | | | | | | Document all options and general usage. Implement the -a option to bump the annotation_level. This improves the Emacs gud behaviour. You can now supply the following function (defun gud-gdb-massage-args (file args) (cons "-a" args)) (e.g. by evaluating it from the *scratch* buffer) and get the normal jump to the source window when browsing the stack. We should probably eventually supply our own kgdb submode to gud.el.
* Document all options and general usage.joerg2004-11-221-0/+67
| | | | | | | | | | | | Implement the -a option to bump the annotation_level. This improves the Emacs gud behaviour. You can now supply the following function (defun gud-gdb-massage-args (file args) (cons "-a" args)) (e.g. by evaluating it from the *scratch* buffer) and get the normal jump to the source window when browsing the stack. We should probably eventually supply our own kgdb submode to gud.el.
* Fix the abuse of Ar macros for designating flag options, use Fl instead.joerg2004-11-221-4/+4
|
* Always set current thread when activating thread debugger,davidxu2004-11-151-1/+1
| | | | | the current thread may already be added by fbsd_find_new_threads, this can result that current thread is not set correctly.
* The correct name of the long option is --line-buffered,keramida2004-11-091-2/+3
| | | | | | | | not --line-bufferring. PR: docs/72985 Submitted by: John Engelhart <johne@zang.com> MFC after: 1 week
* Whitespace fix.marcel2004-11-091-1/+1
|
* Prepare for a subsequent import: If the first letter of the filenamemarcel2004-11-091-35/+43
| | | | | | | | | | | changes, start on a new line. Insertion of a filename will keep the diff limited to the block of filenames that have the same first letter instead of creating a huge diff. While here, move remote.c after the remote-*.c files and move tui.c after the tui-*.c files. This matches the order of ls(1) and makes it easier to compare object files created by a stock gdb(1) build with the list of files we have here. This is a non-functional change only.
* Remove trailing whitespace.kan2004-11-071-1/+1
| | | | Pointed out by: ru
* Reconnect c++filt to the build.kan2004-11-071-2/+2
|
* Unbreak c++filt. It was disconnected from the build and never fixed duringkan2004-11-071-8/+1
| | | | | | GCC 3.4.2 work unintentioanlly. Reminded by: bms
* For variables that are only checked with defined(), don't provideru2004-10-2427-28/+28
| | | | any fake value.
* Utilize SCRIPTS.ru2004-10-181-4/+1
|
* Update to readline 5.0ache2004-10-181-3/+7
|
* Make cvsbug(1) actually work instead of aborting due to missing configurepeter2004-09-281-1/+6
| | | | script substitution markers.
* Fix the embedded version string in cvs and cvsbug. This breaks scriptspeter2004-09-282-2/+2
| | | | | | | that parse it. PR: 72139 Submitted by: Eugene M. Kim <gene@nttmcl.com>
OpenPOWER on IntegriCloud