summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2002-01-19Instead of ifdef around ENOTSUP, move it to pthread_private.h and makeFederico G. Schwindt
it EOPNOTSUPP.
2002-01-19From FreeBSD: correct priority handling.Federico G. Schwindt
2002-01-18From FreeBSD: sem_XXX implementation; manpages comming in a bit.Federico G. Schwindt
2002-01-18Fix some zlib memory leaks, originally from Mark AdlerTodd C. Miller
2002-01-18tab vs. spacesFederico G. Schwindt
2002-01-18while im here, move the ifndef _SCHED_H_ after the copyright message.Federico G. Schwindt
2002-01-18From FreeBSD: header for POSIX 1003.1b semaphores.Federico G. Schwindt
2002-01-17add pcap_inject back into the header fileEric Jackson
2002-01-17when alloc'ing the ready queue, make it big enough.Federico G. Schwindt
2002-01-17remove duplicated Id tag; spotted by miod@.Federico G. Schwindt
2002-01-16compile sparc64 version of sha1.go with -O0, too. OK jason@Marco S Hyman
2002-01-16Use the volatile specifier to fix warnings about variables beingTodd C. Miller
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack.
2002-01-15o no more NOPOLL.Federico G. Schwindt
o rearrange a bit.
2002-01-15MNAMELEN is 90, not 32; peterw AT ifost.org.auTodd C. Miller
2002-01-14Do not create sys_aliases.c for elf systems; tested at some extentFederico G. Schwindt
by art@ and drahn@.
2002-01-14If waitpid() return ECHILD that should not be a fatal error sinceTodd C. Miller
someone else could have waited for the process or zombies could be disabled via SIG_IGN or SA_NOCLDWAIT.
2002-01-12If the user passes in "" as the string to resolve the lstat() willTodd C. Miller
fail anyway so check for that. Also convert "." to "" since that way we avoid the lstat() (which we don't need) and the subsequent chdir() and some dir checks.
2002-01-12document net.inet.icmp.redir{accept,timeout}Eric Jackson
2002-01-11typoJun-ichiro itojun Hagino
From: Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at>
2002-01-11document new sysctl for vfs.nfs.norsvportNathan Binkert
2002-01-10sigprocmask should return 0 on success, fixes powerpc ntpdate problem.Dale Rahn
2002-01-10Change 1st arg in pthread_attr_getdetachstate to const.Federico G. Schwindt
2002-01-10From FreeBSD: fix conversion from msec to timespec.Federico G. Schwindt
2002-01-07If the handler for SIGCHLD is set to SIG_IGN, act as if theTodd C. Miller
SA_NOCLDWAIT (don't create zombies) flag has been specified. This is consistent with most other operating systems and is what XPG4.2 specifies.
2002-01-04system calls are made thru _thread_sys_* with weak symbols of the real nameDale Rahn
pointing to the _thread_sys_ version. ok pval, fgs
2002-01-04Let's start by making the stack pointer 64 bit and nobody will get hurt.Artur Grabowski
2002-01-04longjmp(..., 0) is not really legal, but all other archs I've lookedArtur Grabowski
at make sure that setjmp doesn't return 0 if longjmp is passed a 0. Avoid surprises.
2002-01-04comment out the pending signals check by now; it was not suppose to beFederico G. Schwindt
there yet.
2002-01-03Always have the real entry point to the syscall called _thread_sys_Artur Grabowski
and provide the real name as a weak alias. This is the last piece needed for libc_r on sparc64 (plus debugging).
2002-01-02correct fram size.Artur Grabowski
pointed out by marc@
2002-01-02label abort() from inside library as ILLEGALTheo de Raadt
2002-01-02KNFTheo de Raadt
2002-01-02more pid_t useTheo de Raadt
2002-01-02fp and pc are 64 bit.Artur Grabowski
And just to make things more fun -1, is not a misaligned stack on sparc64.
2002-01-02fp and pc are 64 bit.Artur Grabowski
2002-01-02Grammar and format fixes.Aaron Campbell
2002-01-02fpathconf(2) returns long.Federico G. Schwindt
2002-01-02Remove extra reference to poll.2. Spotted by form@.Mike Pechkin
millert@ ok;
2002-01-02pids should be pid_t, not intMike Pechkin
2002-01-02Move the const qualifier to the right place. deraadt@ okThomas Nordin
2002-01-02Add missing .Os. deraadt@ okThomas Nordin
2001-12-31More changes from FreeBSD, including:Federico G. Schwindt
o Only poll file descriptors when needed. o Change the way timing is achieved, counting scheduling ticks instead of calculating the elapsed time via gettimeofday(). o Prevent an overflow when polling. o Use curthread instead of _thread_run. o Remove extra spaces; indent.
2001-12-30Rename libusb to libusbhid, a better name, per NetBSDPeter Valchev
2001-12-30call pthread_sigmask() instead of having the code twice.Federico G. Schwindt
2001-12-29Two functions can return errors here, not just one.Miod Vallat
2001-12-26no way for this to be 'shared only', duhPeter Valchev
2001-12-20fix to match documented behaviour. RAND_file_name must return a pointer toBob Beck
buf, not something else.
2001-12-20From FreeBSD:Federico G. Schwindt
When cancelling a thread while in a join operation, do not detach the target thread of the join operation. This allows the cancelled thread to detach the target thread in its cancellation handler.
2001-12-20sync with freebsd.Federico G. Schwindt
2001-12-19More sync.Federico G. Schwindt