summaryrefslogtreecommitdiff
path: root/lib/libc/sys
AgeCommit message (Collapse)Author
2004-09-14lint says unsigned...Theo de Raadt
2004-09-14ansiTheo de Raadt
2004-09-14need rfork() stub for lintTheo de Raadt
2004-09-06- Spelling fix.Brad Smith
- 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
2004-08-26from netbsd (-r 1.18):Jason McIntyre
the values for the parameter "how" are defined in sys/signal.h, not signal.h
2004-08-22typo; Axel AnderssonTodd C. Miller
2004-08-02Fix typo (SIGEV_EVENT -> SIGEV_KEVENT)Brad Smith
From FreeBSD
2004-08-02s/kqueue/kevent/ in correct place.Brad Smith
From FreeBSD
2004-07-26- change some lists from -column to -tag (-column not needed) and adjustJason McIntyre
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@
2004-07-24Xr _Exit(3)Todd C. Miller
2004-07-22typo;Jason McIntyre
2004-07-18return EINVAL if ftruncate(2) is passed a negative offsetAnil Madhavapeddy
ok millert@, miod@, marius@
2004-07-17remove K&R stub supportTheo de Raadt
2004-07-15add minimal __syscall() proto for lintTheo de Raadt
2004-07-14MAXNAMELEN -> MAXNAMLENJean-Francois Brousseau
ok jmc@
2004-07-05update(8) is an in-kernel process;Jason McIntyre
from jared yanovich;
2004-07-05typo from jared yanovich;Jason McIntyre
2004-06-07major bump to libc and libpthread to break the dependency of aMarco S Hyman
particular implementation of libpthread for libc. libc no longer needs pthread.h to compile. OK millert@, brad@, tedu@
2004-06-03cross-Xref to make pathconf/sysconf easy to find.Marc Espie
twiddling and okay jmc@ millert@
2004-05-06Tyop; noted by jmc@Todd C. Miller
2004-05-05O_SYNC is valid for F_GETFL/F_SETFL tooTodd C. Miller
2004-05-03Use size_t as the type of the length parameter per POSIXTodd C. Miller
2004-04-27fd passing works over a socketpair too of course so document this.Todd C. Miller
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@,
2004-04-19tidy up a list;Jason McIntyre
move `.Ts OR Ns 'ing' and `.Em or Ns 'ing' -> `OR'ing';
2004-04-15various improvements to lists and displays:Jason McIntyre
.Pp removal -compact removal for displays other list/display errors
2004-04-15connect(2) can set errno = EPROTOTYPE for unix domain sockets. OK jmc@Todd C. Miller
2004-04-03- use macros instead of parenthesesJason McIntyre
- remove .Pp before list
2004-04-02rfork(RFMEM) shares complete vmspace. much more useful, and in line withTed Unangst
other projects' implementations.
2004-04-02do not compare SOCK_STREAM sockets to pipes;Jason McIntyre
from NetBSD (-r1.29); ok markus@ deraadt@
2004-03-23.Xr ftok 3; from tedu@Jason McIntyre
ok deraadt@
2004-03-16Document correct limit to path names lengths. Resolves PR 3716.Otto Moerbeek
ok jmc@ tedu@
2004-03-16errno should only be gotten from <errno.h>. ok help jmc@Ted Unangst
2004-03-11Document that a NULL status pointer is allowed. OK deraadt@Todd C. Miller
2004-03-11Document RB_USERREQTom Cosgrove
ok beck@, jmc@, deraadt@
2004-03-09A better description of the machine-dependent PT commands.Miod Vallat
2004-02-13death to osigaltstack. ok deraadt@Ted Unangst
2004-02-08FD_SETSIZE has been cranked up to 1024Otto Moerbeek
ok deraadt@ millert@
2004-01-25use new .St macro;Jason McIntyre
2004-01-24document EPERM; from Pedro Martelletto;Jason McIntyre
ok millert@
2004-01-23`Ns' implies `No', so `Ns No' -> `Ns'; (even simpler in adduser(8))Jason McIntyre
discussed with todd@
2004-01-15ABI breakage happened with the sigaltstack replacement. It is too late,Theo de Raadt
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.
2004-01-14.Xr closefromTed Unangst
2004-01-14update struct, noted by deraadt@Ted Unangst
2004-01-12full date in .Dd;Jason McIntyre
2004-01-12new syscall closefrom(2). ok deraadt millertTed Unangst
2004-01-12document WAIT_ANY and WAIT_MYPGRP;Jason McIntyre
help and ok miod@
2004-01-08Add missing include of poll.h to example code; Andre NathanTodd C. Miller
2003-12-28Mention session ID; OK deraadt@Todd C. Miller
2003-12-28elf(5) is relevant here too;Jason McIntyre
from Mathias K. Straede (PR 3619); ok miod@ deraadt@
2003-12-20update sticky: note that setting the sticky bit on files is still possible,Jason McIntyre
but has no effect. Retain description of sticky files, but note that it is historical. Add small description of how current system works. Improve description of sticky directories. Remove references to ld(1). Remove no longer relevant BUG. much assistance and ok otto@ and tedu@