summaryrefslogtreecommitdiffstats
path: root/gnu
Commit message (Collapse)AuthorAgeFilesLines
* Compile with -DHAVE_LSTAT since, for whatever reason, the configure scripttjr2005-10-061-1/+1
| | | | shipped with GNU cpio 2.6 fails to test for it.
* Define HAVE_MKFIFO and HAVE_SETLOCALE here since the configure scripttjr2005-10-011-1/+2
| | | | apparently fails to do it.
* Update for GNU cpio 2.6.tjr2005-10-013-15/+528
|
* Unbreak - remove leftover reference to pcb_rflags.peter2005-09-281-1/+0
|
* Include <sys/defs.h> to get __ISO_C_VISIBLE definition is one is notkan2005-09-161-0/+3
| | | | already available.
* Do not expose vfwscanf, vswscanf, vwscanf and wcstof functions ifkan2005-09-161-0/+8
| | | | they are not visible from wchar.h.
* Claim frames corresponding to tl(0|1)_intr and tl0_trap as well. Imarcel2005-09-111-1/+4
| | | | | | | think that's the lot, but it's hard to understand the exception code by mere glancing at it. MFC after: 1 week
* Unwind across intrframes as well. While here, better handle bottom ofmarcel2005-09-111-2/+8
| | | | | | | stack by claiming the frame when the IP is 0. It's a bit of a kluge, but avoids screens full of bogus frames. MFC after: 1 week
* Unwind across intrframes as well.marcel2005-09-111-3/+8
| | | | MFC after: 1 week
* Unwind across trap frames. Handles all entry points, except the EPCmarcel2005-09-111-47/+201
| | | | | | syscall. This is an entry from userland anyway. MFC after: 1 week
* Unwind across trapframes. All kernel entries are handled.marcel2005-09-101-11/+94
| | | | MFC after: 1 week
* Unwind across trap frames. This adds most of the meat. The sniffermarcel2005-09-101-1/+93
| | | | | | | just needs to be taught about all the other entry points and the unwinder needs to be taught about the frame variation between them. MFC after: 1 week
* Unwind across trap frames. This adds most of the meat. The sniffermarcel2005-09-101-10/+95
| | | | | | | just needs to be taught about all the other entry points and the unwinder needs to be taught about the frame variation between them. MFC after: 1 week
* Unwind across trap frames. This adds most of the meat. The sniffermarcel2005-09-101-6/+86
| | | | | | | just needs to be taught about all the other entry points and the unwinder needs to be taught about the frame variation between them. MFC after: 1 week
* Add a kluge to allow kgdb(1) to inject its own frame sniffer in themarcel2005-09-1011-13/+188
| | | | | | | | | | | | | | | | | list of frame sniffers so that trapframes can be detected. The kluge is needed because this version of gdb only supports appending a sniffer to the list of sniffers and the moment kgdb gets a chance to add its own frame sniffer, the target's default frame sniffer is already in the list. Since the default frame sniffer claims any frame thrown at it, kgdb's frame sniffer never gets to smell (a process much akin to tasting, but with lesser chance of hurling :-) This commit adds dummy frame sniffers that never claim a frame and as such don't fix anything yet. However, we now have frame sniffers and they are being called, so it's just a matter of adding meat to the bones and we'll be able to properly unwind across trapframes. MFC after: 1 week
* Expand a bit the description of the -t option.keramida2005-09-091-3/+9
| | | | | Triggered by: Stijn Hoop <stijn@win.tue.nl> on freebsd-questions
* Added ENVIRONMENT section (PAGER, MANPATH, etc.).garys2005-09-011-0/+13
| | | | | | | PR: docs/84485 Submitted by: garys Approved by: keramida MFC after: 3 days
* Do not place paragraph information post-macro unless required by mdoc(7).trhodes2005-08-201-2/+2
|
* Repeatability is Considered Good when building this library, too. (Andcperciva2005-08-171-0/+1
| | | | I think this is the last one which needs it.)
* Add -frandom-seed=RepeatabilityConsideredGood to CFLAGS. This makescperciva2005-08-171-0/+1
| | | | | | | | this library build repeatably. (This change was made to libstdc++ several months ago; I just realized today that it would help here as well.) Approved by: kan
* Fix backtraces. Supply registers from the register window.marcel2005-08-161-16/+7
| | | | MFC after: 3 days
* Control rcs inclusion with NO_RCS insted of NO_TOOLCHAINphk2005-08-061-1/+3
|
* o Remove the obscure tid command, because it does what the threadmarcel2005-08-061-100/+41
| | | | | | | | | | | | | | | | | | | | | | | command does, but worse. o Remove the obscure proc command, because it does what the thread command does, but not unambigously. o Move the PID to the extra thread info, where it makes sense and where it doesn't confuse users. The extra thread info holds some process information, to which the PID belongs. o Implement the to_find_new_threads target method by having it call the target beneath us if we're not using KVM. This makes sure that new threads are found when using the remote target. o Fix various core dump scenarios: - Implement the to_files_info target method. Previously the 'info target' command would cause a NULL pointer dereference. - Don't assume there's a current thread. We're not initialized in all cases. This prevents a NULL pointer dereference. - When we're not ussing KVM, have the to_xfer_memory target method call the target beneath us. This avoids calling into KVM with a NULL pointer. MFC after: 1 week
* o As mentioned in the previous commit: make the KVM error buffermarcel2005-08-061-6/+58
| | | | | | | | | | | | static. o Register a function with atexit(3) to close the KVM object if we have one open. o Show the unread portion of the kernel's message buffer before presenting the prompt. It's bound to provide some useful info. o Don't call kgdb_target() twice. It results in having all threads listed twice. MFC after: 1 week
* let NO_MAN control manphk2005-08-051-3/+12
| | | | | let NO_TOOLCHAIN control rcs let NO_INFO control texinfo
* Respect NO_EXAMPLESphk2005-08-052-0/+4
|
* Don't install groff if NO_GROFFphk2005-08-031-0/+2
|
* Spell "currently" correctly.keramida2005-07-281-1/+1
|
* Bump the shared library version number of all libraries that have notkensmith2005-07-226-6/+6
| | | | | | | been bumped since RELENG_5. Reviewed by: ru Approved by: re (not needed for commit check but in principle...)
* remove myself as maintainer.wosch2005-07-171-1/+0
|
* Hook up libmemstat(3) to the library list in mdoc.local. This will causerwatson2005-07-151-0/+1
| | | | | | | | the library description (specifically, -lmemstat) to render properly in the libmemstat.3 man page. Submitted by: ru MFC after: 1 week
* Adjust for HEAD being 7.0 now.kensmith2005-07-111-1/+2
| | | | Approved by: re (implicit)
* kvm_openfiles() uses the supplied buffer for storing error messagespeter2005-06-241-1/+0
| | | | | | | | | in future calls, so we can't free it here. The right place to free the buffer would be to be after kvm_close(), but we don't do that yet. A static buffer would work too. Reviewed by: marcel (who has other plans for this anyway) Approved by: re
* A number of manpages already use ``.Fx 5.5'', define it.ru2005-06-161-0/+1
| | | | Approved by: re (blanket)
* 1. Add the threads and usb categories.ceri2005-06-161-3/+11
| | | | | | | | | 2. Fill in the blanks on the advocacy category. 3. Expand a contraction while I'm in here. Prodded by: simon (1) Approved by: re (hrs) MFC after: 5 days
* Clean up after the last change -- remove now stale comment.ru2005-06-101-1/+0
|
* Remove kludges intended to support src trees with partial obj trees.des2005-06-105-32/+4
| | | | Discussed with: ru
* Correct directory traversal and race condition vulnerabilities in gzip.simon2005-06-081-8/+10
| | | | | | | Security: FreeBSD-SA-05:11.gzip Security: CAN-2005-0988, CAN-2005-1228 Obtained from: Steve Grubb via RedHat, Debian Approved by: nectar
* Tidy up cvs entriesimp2005-06-037-14/+0
|
* Update bmake glue for GCC 3.4.4.kan2005-06-031-1/+3
|
* Pass the RE_ICASE flag to re_set_syntax() as appropriate to fixtjr2005-05-311-3/+3
| | | | | | case-insensitive matching (-i option) in certain multibyte locales. Obtained from: Fedora
* Add support for XMM registers in GDB for x86 processors that supportdfr2005-05-312-12/+112
| | | | | | | SSE (or its successors). Reviewed by: marcel, davidxu MFC After: 2 weeks
* Update for texinfo 4.8.ru2005-05-232-4/+3
|
* Add a note explaining what local modifications have been made to GNU grep,tjr2005-05-141-0/+37
| | | | and giving advice on importing future releases.
* Fixed -w handling for EGexecute.tjr2005-05-141-4/+83
| | | | Obtained from: Fedora (Tim Waugh)
* Automatically disable DFA when processing multibyte input. GREP_USE_DFAtjr2005-05-141-3/+28
| | | | | | environment variable overrides. Obtained from: Fedora (Tim Waugh)
* Better multibyte handling in EGexecute() and Fexecute(). Fixed -Fi fortjr2005-05-141-131/+525
| | | | | | multibyte input (RH bug #143079). Obtained from: Fedora (Jakub Jelinek, Tim Waugh)
* Removed redundant (and incorrect) code in prline. Fixes grep -i --color "",tjr2005-05-141-27/+0
| | | | | | | among other things. PR: 79063 Obtained from: Fedora (Tim Waugh)
* Fix background colour problems with --color output (RH bug #138913).tjr2005-05-141-0/+1
| | | | Obtained from: Karsten Hopp via Fedora
* Fixed a bug in the fgrep patch, exposed by the dfa-optional patchtjr2005-05-141-27/+22
| | | | | | (RH bug #138558). Removed bogus part of grep-2.5.1-fgrep patch. Obtained from: Fedora (Jakub Jelinek, Tim Waugh)
OpenPOWER on IntegriCloud