| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
|
| |
__stdin, __stdout and __stderr. Note, we don't generate references to
them (yet). That will be done in 6.0, so don't panic just yet.
Notes:
svn path=/stable/4/; revision=73580
|
| |
|
|
|
|
|
| |
PR: 15070
Notes:
svn path=/stable/4/; revision=72711
|
| |
|
|
|
|
|
| |
and family.
Notes:
svn path=/stable/4/; revision=71296
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=70893
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=70554
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=70483
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=69898
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=69764
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=66170
|
| |
|
|
|
|
|
| |
Check additional failure case in getopt.
Notes:
svn path=/stable/4/; revision=66103
|
| |
|
|
|
|
|
|
| |
- some sentencebreaks
- typo
Notes:
svn path=/stable/4/; revision=60637
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=60084
|
| |
|
|
| |
Notes:
svn path=/stable/4/; revision=59521
|
| |
|
|
| |
Notes:
svn path=/head/; revision=57695
|
| |
|
|
|
|
|
|
| |
of the typeset output, tend to make diffs harder to read and provide
bad examples for new-comers to mdoc.
Notes:
svn path=/head/; revision=57686
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
just use _foo() <-- foo(). In the case of a libpthread that doesn't do
call conversion (such as linuxthreads and our upcoming libpthread), this
is adequate. In the case of libc_r, we still need three names, which are
now _thread_sys_foo() <-- _foo() <-- foo().
Convert all internal libc usage of: aio_suspend(), close(), fsync(), msync(),
nanosleep(), open(), fcntl(), read(), and write() to _foo() instead of foo().
Remove all internal libc usage of: creat(), pause(), sleep(), system(),
tcdrain(), wait(), and waitpid().
Make thread cancellation fully POSIX-compliant.
Suggested by: deischen
Notes:
svn path=/head/; revision=56698
|
| |
|
|
| |
Notes:
svn path=/head/; revision=56589
|
| |
|
|
| |
Notes:
svn path=/head/; revision=56131
|
| |
|
|
|
|
|
|
|
| |
points. For library functions, the pattern is __sleep() <--
_libc_sleep() <-- sleep(). The arrows represent weak aliases. For
system calls, the pattern is _read() <-- _libc_read() <-- read().
Notes:
svn path=/head/; revision=55837
|
| |
|
|
|
|
|
| |
the name by which it is referenced in the text.
Notes:
svn path=/head/; revision=55649
|
| |
|
|
|
|
|
|
|
|
|
| |
is good for... :-)), I discovered that part of the change when mkstemps()
was brought in was missed - it was missing the termination case to make
sure it doesn't walk into the suffix. This isn't the same code OpenBSD
has, I think this is a little better as we terminate the loop in a better
spot.
Notes:
svn path=/head/; revision=54439
|
| |
|
|
| |
Notes:
svn path=/head/; revision=53529
|
| |
|
|
| |
Notes:
svn path=/head/; revision=53460
|
| |
|
|
| |
Notes:
svn path=/head/; revision=53459
|
| |
|
|
|
|
|
|
|
| |
misleading.
Submitted by: Theo de Raadt <deraadt@cvs.openbsd.org>
Notes:
svn path=/head/; revision=53440
|
| |
|
|
| |
Notes:
svn path=/head/; revision=53426
|
| |
|
|
| |
Notes:
svn path=/head/; revision=52864
|
| |
|
|
|
|
|
| |
Use _mktemp internally
Notes:
svn path=/head/; revision=52466
|
| |
|
|
| |
Notes:
svn path=/head/; revision=50476
|
| |
|
|
|
|
|
|
|
| |
these are inherently unsafe interfaces.
Do not allow TMPDIR to override path for setuid/setgid programs.
Notes:
svn path=/head/; revision=50121
|
| |
|
|
|
|
|
|
| |
Submitted by: Anton Berezin <tobez@plab.ku.dk>
PR : 12852
Notes:
svn path=/head/; revision=49613
|
| |
|
|
|
|
|
| |
%G formats.
Notes:
svn path=/head/; revision=49518
|
| |
|
|
|
|
|
|
| |
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).
Notes:
svn path=/head/; revision=49082
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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
Notes:
svn path=/head/; revision=48794
|
| |
|
|
|
|
|
|
| |
the underlying file descriptor is also closed. To me at least this wasn't
immediately obvious.
Notes:
svn path=/head/; revision=47281
|
| |
|
|
|
|
|
| |
Noted by: bde
Notes:
svn path=/head/; revision=45518
|
| |
|
|
|
|
|
|
| |
Obtained from: OpenBSD
Poked in the eye about committing new functions without a manpage: obrien
Notes:
svn path=/head/; revision=45308
|
| |
|
|
|
|
|
|
|
| |
hasn't caused any problems until the egcs import. This fix breaks the
world build, but my very next commit will remove mkstemps from the
egcs build.
Notes:
svn path=/head/; revision=45303
|
| |
|
|
|
|
|
| |
Reviewed by: bde
Notes:
svn path=/head/; revision=44674
|
| |
|
|
| |
Notes:
svn path=/head/; revision=44482
|
| |
|
|
|
|
|
|
|
|
|
|
| |
compiling, since <stdio.h> correctly doesn't declare off_t although
the pseudo-prototypes for the new fseeko() and ftello() functions
use it. Handle this like the corresponding problem for va_list
versus the vprintf() family.
Fixed some English errors.
Notes:
svn path=/head/; revision=44481
|
| |
|
|
|
|
|
| |
PR: docs/10247
Notes:
svn path=/head/; revision=44286
|
| |
|
|
|
|
|
|
|
|
| |
Fixed fgetpos() and fsetpos() for offsets > 2GB.
PR: 8637
Submitted by: Dan Nelson <dnelson@emsphone.com> (adjusted by me a little)
Notes:
svn path=/head/; revision=43782
|
| |
|
|
| |
Notes:
svn path=/head/; revision=41902
|
| |
|
|
| |
Notes:
svn path=/head/; revision=40731
|
| |
|
|
|
|
|
| |
mkstemp() is not behaving as documented.
Notes:
svn path=/head/; revision=40540
|
| |
|
|
|
|
|
|
|
|
| |
There are other ways to fix this than wrapping _gettemp(), but this was
the most convenient.
Discovered by: bde
Notes:
svn path=/head/; revision=40539
|
| |
|
|
|
|
|
|
|
|
|
| |
ever saw one), and move the description of NULL behaviour out to a
'NOTES' section, with an extra note that programs should not rely up
on it.
Kinda-approve-by: bde (by not replying to the mail with the diff)
Notes:
svn path=/head/; revision=40178
|
| |
|
|
|
|
|
| |
Noticed by: Alex Nash <nash@mcs.net>
Notes:
svn path=/head/; revision=39923
|
| |
|
|
| |
Notes:
svn path=/head/; revision=39716
|