summaryrefslogtreecommitdiff
path: root/lib/libc/sys
AgeCommit message (Collapse)Author
1999-02-15socklen_t is used in struct msghdr and struct cmsghdrTodd C. Miller
1999-02-15Use and document socklen_tTodd C. Miller
1999-02-05support MSG_BCAST and MSG_MCASTTheo de Raadt
1999-02-01mi ptraceDavid Leonard
1999-01-22typoArtur Grabowski
1999-01-22mention that rmdir(.) returns EBUSY as per XPG4.2Todd C. Miller
1999-01-11RFNOWAIT is now supportedNiklas Hallqvist
1998-12-31typo; jon@oaktree.co.ukTheo de Raadt
1998-12-31typo; matter@suspicious.orgTodd C. Miller
1998-12-21document EOPNOTSUPPArtur Grabowski
1998-12-05typoMarc Espie
1998-11-20Add thread-safety to libc, so that libc_r will build (on i386 at least).David Leonard
All POSIX libc api now there (to P1003.1c/D10) (more md stuff is needed for other libc/arch/*) (setlogin is no longer a special syscall) Add -pthread option to gcc (that makes it use -lc_r and -D_POSIX_THREADS). Doc some re-entrant routines Add libc_r to intro(3) dig() uses some libc srcs and an extra -I was needed there. Add more md stuff to libc_r. Update includes for the pthreads api Update libc_r TODO
1998-11-16doc EAFNOSUPPORT returnTheo de Raadt
1998-09-18make use of xfspioctlArtur Grabowski
1998-09-07Nitpicking max filename length: add .Xr to pathconf/fpathconf.Marc Espie
1998-09-06More man page fixes. Spelling, grammar, some typos. Lots of double-wordAaron Campbell
occurrences squashed as well.
1998-08-29man page repairs; aaron@ug.cs.dal.caTheo de Raadt
1998-08-21mention that madvise() is not yet implementedTodd C. Miller
1998-08-21document MAP_COPYTodd C. Miller
1998-08-17Xr pollTheo de Raadt
1998-08-07Xr netintroTheo de Raadt
1998-08-05IOV_MAX, not UIO_MAXIOVTodd C. Miller
1998-07-28For read, write, send, sendto, recv, recvfrom return EINVAL is size arg > ↵Todd C. Miller
SSIZE_MAX. For readv, writev, sendmsg, recvmsg return EINVAL if sum of the over iov_len values overflows an ssize_t. Based on what XPG 4.2 says (though XPG is not entirely consistent here). Basically since the return value is ssize_t allowing size > SSIZE_MAX is bad since people who (incorrectly mind you) check the return value for < 0 instead of == -1 will have bad things happen to them.
1998-07-28document EINVAL due to overflowTodd C. Miller
1998-07-28Don't talk about the sum of the iov_len being negative since iov_len is ↵Todd C. Miller
unsigned.
1998-07-24Man pages Xrefs.Marc Espie
1998-07-20SEM_R and SEM_A userland accessable as required; michaels@inet.noTheo de Raadt
1998-07-14document setuid/setgid restrictionsTheo de Raadt
1998-07-13clarifyTheo de Raadt
1998-07-11fix date specTheo de Raadt
1998-07-10correct range spec; jkoshyTheo de Raadt
1998-07-06fix openbsd tagTheo de Raadt
1998-07-02document fd 0-2 scheme for setuid/setgidTheo de Raadt
1998-06-27Document EINVAL if peer address is multicast.Angelos D. Keromytis
1998-06-23doc EINVAL; bdeTheo de Raadt
1998-06-15use Bx macro for BSD versionsMichael Shalayeff
1998-06-11change ipc.h to use uid_t and friends, and then build compat system calls ↵Theo de Raadt
for the old ushort based ipc.h
1998-06-10XPG says 4th arg is optionalTheo de Raadt
1998-06-08clean; kleinkTheo de Raadt
1998-06-08do not needlessly uppercase function namesTheo de Raadt
1998-06-06MAP_FAILED; kleinkTheo de Raadt
1998-06-05spellingTheo de Raadt
1998-05-18spellingArtur Grabowski
1998-05-13connect() can get EINTR tooTheo de Raadt
1998-05-13put the SA_RESTART into the list of flagsTheo de Raadt
1998-05-13document SA_RESETHAND; erh@uaccess.netTheo de Raadt
1998-05-12recommend fcntl.h not sys/file.h; kleinkTheo de Raadt
1998-05-11const a few more callsTheo de Raadt
1998-04-27fix .Ev usageTodd C. Miller
1998-04-26Allow PF_LOCAL as the proto arg in socketpair(2). Previously, onlyTodd C. Miller
PF_UNSPEC would work. Needed for general sanity as well as XPG4.2.