summaryrefslogtreecommitdiffstats
path: root/lib/libc/sys (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* really mention BPF this time around.brad2004-09-231-3/+10
|
* mention support for BPF.brad2004-09-231-2/+2
| | | | From: FreeBSD
* MLINK to macros provided in wait.2deraadt2004-09-181-1/+4
|
* add files missing for building a proper lint libraryderaadt2004-09-161-5/+5
|
* lint says unsigned...deraadt2004-09-141-4/+6
|
* ansideraadt2004-09-1410-32/+20
|
* need rfork() stub for lintderaadt2004-09-141-0/+15
|
* - Spelling fix.brad2004-09-061-2/+15
| | | | | | | | - Add mention of the fact that timeouts are silently limited to 24 hours. - Document the fact that kqueue will immediately return and not timeout when nevents is 0. From FreeBSD
* from netbsd (-r 1.18):jmc2004-08-261-2/+2
| | | | the values for the parameter "how" are defined in sys/signal.h, not signal.h
* typo; Axel Anderssonmillert2004-08-221-2/+2
|
* Fix typo (SIGEV_EVENT -> SIGEV_KEVENT)brad2004-08-021-2/+2
| | | | From FreeBSD
* s/kqueue/kevent/ in correct place.brad2004-08-021-2/+2
| | | | From FreeBSD
* - change some lists from -column to -tag (-column not needed) and adjustjmc2004-07-261-16/+39
| | | | | | | | | | for a decent -width - document MSG_DONTWAIT (from FreeBSD) - simplify macros - document EHOSTUNREACH, EHOSTDOWN, and ENETDOWN; spotted by henning@ - .Xr connect 2 ok henning@ millert@
* Xr _Exit(3)millert2004-07-241-1/+2
|
* typo;jmc2004-07-221-2/+2
|
* return EINVAL if ftruncate(2) is passed a negative offsetavsm2004-07-181-1/+5
| | | | ok millert@, miod@, marius@
* remove K&R stub supportderaadt2004-07-171-38/+4
|
* add minimal __syscall() proto for lintderaadt2004-07-151-1/+5
|
* MAXNAMELEN -> MAXNAMLENjfb2004-07-141-3/+3
| | | | ok jmc@
* update(8) is an in-kernel process;jmc2004-07-051-2/+2
| | | | from jared yanovich;
* typo from jared yanovich;jmc2004-07-051-2/+2
|
* major bump to libc and libpthread to break the dependency of amarc2004-06-072-2/+6
| | | | | | particular implementation of libpthread for libc. libc no longer needs pthread.h to compile. OK millert@, brad@, tedu@
* cross-Xref to make pathconf/sysconf easy to find.espie2004-06-031-1/+2
| | | | twiddling and okay jmc@ millert@
* Tyop; noted by jmc@millert2004-05-061-2/+2
|
* O_SYNC is valid for F_GETFL/F_SETFL toomillert2004-05-051-1/+8
|
* Use size_t as the type of the length parameter per POSIXmillert2004-05-032-4/+4
|
* fd passing works over a socketpair too of course so document this.millert2004-04-271-3/+6
| | | | | | Also test it in regress to be pedantic (though the kernel path is really the same). While there, remove cred-passing code that we don't support. OK deraadt@,
* tidy up a list;jmc2004-04-191-8/+5
| | | | move `.Ts OR Ns 'ing' and `.Em or Ns 'ing' -> `OR'ing';
* various improvements to lists and displays:jmc2004-04-1515-59/+43
| | | | | | .Pp removal -compact removal for displays other list/display errors
* connect(2) can set errno = EPROTOTYPE for unix domain sockets. OK jmc@millert2004-04-151-1/+14
|
* - use macros instead of parenthesesjmc2004-04-031-10/+16
| | | | - remove .Pp before list
* rfork(RFMEM) shares complete vmspace. much more useful, and in line withtedu2004-04-021-2/+1
| | | | other projects' implementations.
* do not compare SOCK_STREAM sockets to pipes;jmc2004-04-021-2/+2
| | | | | from NetBSD (-r1.29); ok markus@ deraadt@
* .Xr ftok 3; from tedu@jmc2004-03-233-6/+9
| | | | ok deraadt@
* Document correct limit to path names lengths. Resolves PR 3716.otto2004-03-161-5/+3
| | | | ok jmc@ tedu@
* errno should only be gotten from <errno.h>. ok help jmc@tedu2004-03-161-2/+7
|
* Document that a NULL status pointer is allowed. OK deraadt@millert2004-03-111-3/+3
|
* Document RB_USERREQtom2004-03-111-2/+20
| | | | ok beck@, jmc@, deraadt@
* A better description of the machine-dependent PT commands.miod2004-03-091-20/+40
|
* death to osigaltstack. ok deraadt@tedu2004-02-131-2/+1
|
* FD_SETSIZE has been cranked up to 1024otto2004-02-081-2/+2
| | | | ok deraadt@ millert@
* use new .St macro;jmc2004-01-253-8/+8
|
* document EPERM; from Pedro Martelletto;jmc2004-01-241-1/+3
| | | | ok millert@
* `Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))jmc2004-01-232-4/+4
| | | | discussed with todd@
* ABI breakage happened with the sigaltstack replacement. It is too late,deraadt2004-01-151-1/+2
| | | | | | | now we just have to cope. Since setjmp uses it, the alpha and sparc64 are unhappy with the structure change. In a few days, we will make the second hop here, for now, use the old system call until all binaries have the new struct in them.
* .Xr closefromtedu2004-01-141-1/+2
|
* update struct, noted by deraadt@tedu2004-01-141-2/+2
|
* full date in .Dd;jmc2004-01-121-2/+2
|
* new syscall closefrom(2). ok deraadt millerttedu2004-01-122-4/+64
|
* document WAIT_ANY and WAIT_MYPGRP;jmc2004-01-121-3/+13
| | | | help and ok miod@