Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | ansify function arguments | 2003-08-04 | 1 | -34/+16 | ||
| | | | | ok tdeval@ | |||||
* | Use WCONTINUED as width for list of wait options; jmc@ | 2003-08-03 | 1 | -2/+2 | ||
| | ||||||
* | Implement the WCONTINUED flag to the wait(2) family of syscalls and the | 2003-08-03 | 1 | -9/+20 | ||
| | | | | | | | | | associated WIFCONTINUED macro as per 1003.1-2001. Adapted from FreeBSD. A minor amount of trickiness is involved here. The value for WCONTINUED is chosen in such a way that _WSTATUS(_WCONTINUED) == _WSTOPPED and the WIFSTOPPED macro has been modified such that WIFSTOPPED(_WCONTINUED) != _WSTOPPED. This means we don't need to add an extra check to the WIFSIGNALED and WIFSTOPPED macros. deraadt@ OK. | |||||
* | Rename rootd to needslash and invert its value. This fixes the check | 2003-08-01 | 1 | -6/+6 | ||
| | | | | | for ENAMETOOLONG, though since we use strlcpy() and strlcat() this is not a big deal. Problem found by vincent@ | |||||
* | Fix the *longjmp() behaviour - it is legal to reuse a jmp_buf several times. | 2003-08-01 | 3 | -36/+15 | ||
| | | | | Gets us a working perl 5.8. | |||||
* | fix a proto | 2003-07-31 | 1 | -2/+2 | ||
| | ||||||
* | Remove my email address from my entry in the AUTHORS section | 2003-07-30 | 2 | -4/+4 | ||
| | ||||||
* | missing #include | 2003-07-30 | 1 | -1/+2 | ||
| | | | | Claudio Jeker, PR3382 | |||||
* | document: ip.portfirst ip.portlast ip.porthifirst ip.porthilast; | 2003-07-29 | 1 | -1/+28 | ||
| | | | | | | | | | reported by Alejandro G. Belluscio on bugs@ Also document: ip.maxqueue thanks to henning, pb, otto and markus for their help. ok henning@ | |||||
* | add a spot of .Fa to variable names | 2003-07-29 | 1 | -2/+5 | ||
| | | | | jmc@ ok | |||||
* | sync struct addrinfo with what's in <netdb.h>; | 2003-07-27 | 1 | -11/+11 | ||
| | | | | ok itojun@ | |||||
* | change the description of [EINVAL] for mount() and unmount(); | 2003-07-25 | 1 | -3/+3 | ||
| | | | | | | discussed with tedu. reported by Hannah Schroeter on misc@ | |||||
* | warn about unsafe APIs at link time. Conditional on libc/Makefile defining | 2003-07-24 | 9 | -15/+63 | ||
| | | | | | APIWARN; disabled by default. In use by many developers for quite some time, now they have a common knob to enable/disable this | |||||
* | kill a whitespace at EOL; | 2003-07-23 | 1 | -2/+2 | ||
| | ||||||
* | bug library/3297: lib/libc/net/get{addr,name}info should share mutex | 2003-07-21 | 2 | -4/+9 | ||
| | | | | 'Looks right' deraadt@ | |||||
* | updated license | 2003-07-21 | 3 | -68/+47 | ||
| | ||||||
* | Remove bogus static; from Hiroki Sato | 2003-07-21 | 1 | -3/+3 | ||
| | ||||||
* | minor number bump due to added functions | 2003-07-21 | 1 | -1/+1 | ||
| | ||||||
* | build ftw and nftw | 2003-07-21 | 1 | -18/+21 | ||
| | ||||||
* | Compile llabs.c | 2003-07-21 | 1 | -1/+2 | ||
| | ||||||
* | llabs(3) for C99 | 2003-07-21 | 2 | -6/+59 | ||
| | ||||||
* | ftw(3) and nftw(3) for XPG compliance; emulated via fts(3) | 2003-07-21 | 3 | -0/+437 | ||
| | ||||||
* | enable the libc portions of the quad float stuff (nothing will call this | 2003-07-21 | 1 | -1/+3 | ||
| | | | | until a forthcoming gcc patch is in place). | |||||
* | implementation of __ftoul (float -> unsigned long) (based on __dtoul above it) | 2003-07-21 | 1 | -6/+53 | ||
| | ||||||
* | quad float emulation stuff. Mostly based on freebsd (which is based on | 2003-07-21 | 17 | -0/+3898 | ||
| | | | | NetBSD's kernel emulation stuff). Not enabled yet. | |||||
* | - just warn in case of mmap/brk failure | 2003-07-19 | 1 | -5/+5 | ||
| | | | | | | - extend_pgdir and malloc_make_chunks return int, not void* ok tedu@ | |||||
* | add missing includes | 2003-07-18 | 2 | -4/+8 | ||
| | | | | ok tedu@ | |||||
* | proto repairs | 2003-07-15 | 7 | -8/+17 | ||
| | ||||||
* | .Ql Pa -> .Sq Pa where literal makes no sense; | 2003-07-15 | 1 | -7/+7 | ||
| | ||||||
* | .Ql Cm -> .Sq Cm where literal makes no sense; | 2003-07-15 | 1 | -2/+2 | ||
| | ||||||
* | protos | 2003-07-15 | 2 | -3/+4 | ||
| | ||||||
* | -make a copy the global variable | 2003-07-14 | 1 | -2/+2 | ||
| | | | | +make a copy of the global variable | |||||
* | Fix two cases where malloc() returns NULL but does not set errno to ENOMEM. | 2003-07-13 | 1 | -2/+5 | ||
| | | | | ok tdeval@ henning@ millert@ | |||||
* | license oops; from tedu | 2003-07-11 | 1 | -1/+4 | ||
| | ||||||
* | Use a logical comparison (unsigned) for pointers. ok drahn@ | 2003-07-10 | 1 | -2/+2 | ||
| | ||||||
* | open() is not ANSI; | 2003-07-09 | 1 | -2/+1 | ||
| | | | | pointed out by Pedro Bastos; | |||||
* | KNF + ansification | 2003-07-08 | 1 | -6/+5 | ||
| | | | | ok deraadt@, vincent@ | |||||
* | - fix a list | 2003-07-07 | 1 | -3/+2 | ||
| | | | | - remove .Pp before .Bd | |||||
* | - remove some unnecessary quoting | 2003-07-07 | 1 | -20/+17 | ||
| | | | | | | - simplify a display - escape en-dashes - .Li Dq -> .Dq Li | |||||
* | - .Li Ta -> .D1 | 2003-07-07 | 2 | -6/+5 | ||
| | | | | | - .Li Dq -> .Dq Li - remove .br | |||||
* | convert some complicated lists to displays; | 2003-07-07 | 3 | -69/+31 | ||
| | ||||||
* | Fix the types in struct dirent and document d_type (description | 2003-07-04 | 1 | -8/+26 | ||
| | | | | taken from NetBSD). | |||||
* | nonstandard->non-standard | 2003-07-02 | 1 | -2/+2 | ||
| | | | | jmc@ ok | |||||
* | the arrays are null terminated, but the strings are only nul terminated. | 2003-07-02 | 1 | -3/+3 | ||
| | ||||||
* | 6 X's -> 10 X's in all examples, per avsm's idea, millert agrees | 2003-07-02 | 1 | -4/+4 | ||
| | ||||||
* | Mention environment variables used + some other minor fixes. | 2003-06-30 | 1 | -5/+31 | ||
| | | | | jmc@ and henning@ OK | |||||
* | remove some old groff macros and replace them with -mdoc ones; | 2003-06-29 | 1 | -6/+9 | ||
| | ||||||
* | remove superfluous semicolon; | 2003-06-29 | 1 | -2/+2 | ||
| | | | | from wiz@netbsd | |||||
* | tweak; | 2003-06-29 | 1 | -2/+2 | ||
| | | | | ok tedu@ | |||||
* | new sysctl, ddb.log | 2003-06-28 | 1 | -1/+4 | ||
| |