| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
%G formats.
|
|
|
|
|
|
|
| |
Fix copyrights (s/REGENTS/AUTHOR).
Suggested by: tg
Approved by: jb
|
|
|
|
|
|
|
| |
descriptors are not opened.
PR: bin/12853
Reviewed by: jb
|
|
|
|
| |
sysexits.h-values as exit codes for portable programs.
|
|
|
|
|
|
|
| |
Removed POSIX.1/NetBSD markup (braces) for NAME_MAX, etc. We don't
define this. Most FreeBSD man pages hard-code the limits; in fact,
utimes.2 recently became the only file in libc/sys/*.2 that mentions
NAME_MAX. There probably should be mandoc macros for this.
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
Text is a compromise based on messages from Wes Peters, Ville-Pertti
Keinonen, and Matt Dillon.
PR: docs/10512
Submitted by: Howard Goldstein <hgoldst@mpcs.com>
|
|
|
|
|
|
| |
Note: you need to install the current groff tmac macros for these
man pages to format correctly. Specifically, rev 1.21 of
contrib_groff/tmac/doc-syms in -current, or rev 1.17.24 for 3.2-stable
|
|
|
|
|
|
| |
added to the getdirentries(2) man page because 95%+ of that
man page comprised the text of the getdents(2) man page
I obtained from NetBSD.
|
|
|
|
| |
Pointed-out-by: bde
|
|
|
|
|
|
|
|
| |
still needs some cleanup which is why it hasn't been added to the
Makefile yet.
Obtained from: NetBSD
Pointed-out-by: bde
|
|
|
|
|
| |
PR: kern/11213
Obtained from: NetBSD w/some minor changes by me
|
| |
|
|
|
|
|
| |
PR: 12783
Submitted by: Kevin Day <toasty@dragondata.com>
|
|
|
|
|
| |
PR: 12810
Submitted by: Alex Perel <veers@disturbed.net>
|
| |
|
|
|
|
|
|
|
| |
fix wrong index from p_simp_re()
PR: 8790
Submitted by: Alexander Viro <viro@math.psu.edu> (partially)
|
|
|
|
|
| |
misinterpreted to mean that the pointer passed to asprintf() must be suitable
for passing to realloc() as-is (ie. either a NULL pointer or a valid pointer).
|
|
|
|
|
| |
PR: 12634 (partial)
Submitted by: Julian H. Stacey jhs@FreeBSD.ORG
|
|
|
|
|
|
|
|
| |
(devname() returned "??" when the lookup failed, but callers expected it
to return NULL). This was fixed in Lite2, but until recently the changes
were only merged into devname.3. A day or two after devname.c was fixed,
devname.3 was made inconsistent again by backing out most of the Lite2
changes.
|
|
|
|
|
|
|
| |
(or no information is available).
PR: docs/12707
Submitted by: Chris Costello <chris@calldei.com>
|
|
|
|
| |
Submitted by: Kris Kennaway <root@rebel.net.au>
|
| |
|
|
|
|
| |
find anything in the database.
|
| |
|
| |
|
|
|
|
|
|
|
| |
uintfptr_t may be better for offset, but we must wait until
the definition of uintfptr_t moves from machine/profile.h.
Reviewed by: bde
|
| |
|
|
|
|
|
|
|
| |
looking up a record called "root".
PR: docs/12377
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
track.
The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;
.\" $Id$
.\"
If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.
Approved by: bde
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
track.
The $Id$ line is normally at the bottom of the main comment block in the
man page, separated from the rest of the manpage by an empty comment,
like so;
.\" $Id$
.\"
If the immediately preceding comment is a @(#) format ID marker than the
the $Id$ will line up underneath it with no intervening blank lines.
Otherwise, an additional blank line is inserted.
Approved by: bde
|
|
|
|
| |
PTHREAD_STACK_TOP was wrong for all supported architectures.
|
|
|
|
|
|
|
| |
a make -D option.
PR: 12591
Submitted by: Craig Leres <leres@ee.lbl.gov>
|
| |
|
|
|
|
|
|
|
|
| |
Always use mmap() for default-size stack allocation. Use MAP_ANON instead
of MAP_STACK on the alpha architecture.
Reduce the amount of code executed while owning _gc_mutex during stack
allocation.
|
| |
|
| |
|
| |
|
|
|
|
| |
Approved by: phk
|
| |
|
|
|
|
|
| |
must be made default for the alpha before growable thread stacks are
enabled for the alpha.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Cache discarded default thread stacks for use in subsequent thread creations.
Create a red zone at the end of each stack (including the initial thread
stack), with the hope of causing a segfault if a stack overflows.
To activate these modifications, add -D_PTHREAD_GSTACK to CFLAGS in
src/lib/libc_r/Makefile. Since the modifications depend on the VM_STACK
kernel option, I'm not sure how to safely use growable stacks by default.
Testing, as well as algorithmic and stylistic comments are welcome.
|
| |
|
| |
|
| |
|
|
|
|
| |
PR: bin/11315
|