Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-01-28 | correct function name. | Federico G. Schwindt | |
2002-01-28 | sem_XXX(3) manpages; better now that never. | Federico G. Schwindt | |
From FreeBSD. | |||
2002-01-28 | Fix memory leaks in login_getcapnum() and login_getcapsize(). | Mike Pechkin | |
millert@ ok | |||
2002-01-24 | Fix `necesary' typos; Alexander Yurchenko | Todd C. Miller | |
Alas many of these were introduced by yours truly as necessary just doesn't look right to me for some reason ;-) | |||
2002-01-24 | most of these is v2, not v6 | Michael Shalayeff | |
2002-01-24 | ellaborate on history | Michael Shalayeff | |
2002-01-24 | add a note about the old stty | Michael Shalayeff | |
2002-01-24 | fix the history refs | Michael Shalayeff | |
2002-01-24 | remove old style init used by mips. uses _thread_init_constructor now | Per Fogelstrom | |
2002-01-23 | From FreeBSD: | Federico G. Schwindt | |
o Use _get_curthread() instead of _thread_run. o Correctly deal with cancellations. o Add libc internal versions of pthread_mutex_lock() and pthread_mutex_trylock(), unused by now. | |||
2002-01-23 | _THREAD_PRIVATE_MUTEX_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt | |
2002-01-23 | THREAD_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt | |
2002-01-23 | Fix memory leaks in login_getstyle(), login_getstr() and login_getcaptime() | Todd C. Miller | |
2002-01-21 | s/deamon/daemon/ | Theo de Raadt | |
2002-01-21 | Special case a_strnid.c on vax. | Hugh Graham | |
2002-01-19 | Instead of ifdef around ENOTSUP, move it to pthread_private.h and make | Federico G. Schwindt | |
it EOPNOTSUPP. | |||
2002-01-19 | From FreeBSD: correct priority handling. | Federico G. Schwindt | |
2002-01-18 | From FreeBSD: sem_XXX implementation; manpages comming in a bit. | Federico G. Schwindt | |
2002-01-18 | Fix some zlib memory leaks, originally from Mark Adler | Todd C. Miller | |
2002-01-18 | tab vs. spaces | Federico G. Schwindt | |
2002-01-18 | while im here, move the ifndef _SCHED_H_ after the copyright message. | Federico G. Schwindt | |
2002-01-18 | From FreeBSD: header for POSIX 1003.1b semaphores. | Federico G. Schwindt | |
2002-01-17 | add pcap_inject back into the header file | Eric Jackson | |
2002-01-17 | when alloc'ing the ready queue, make it big enough. | Federico G. Schwindt | |
2002-01-17 | remove duplicated Id tag; spotted by miod@. | Federico G. Schwindt | |
2002-01-16 | compile sparc64 version of sha1.go with -O0, too. OK jason@ | Marco S Hyman | |
2002-01-16 | Use the volatile specifier to fix warnings about variables being | Todd C. Miller | |
clobbered by longjmp / vfork instead of the gcc "(void)&foo;" hack. | |||
2002-01-15 | o no more NOPOLL. | Federico G. Schwindt | |
o rearrange a bit. | |||
2002-01-15 | MNAMELEN is 90, not 32; peterw AT ifost.org.au | Todd C. Miller | |
2002-01-14 | Do not create sys_aliases.c for elf systems; tested at some extent | Federico G. Schwindt | |
by art@ and drahn@. | |||
2002-01-14 | If waitpid() return ECHILD that should not be a fatal error since | Todd C. Miller | |
someone else could have waited for the process or zombies could be disabled via SIG_IGN or SA_NOCLDWAIT. | |||
2002-01-12 | If the user passes in "" as the string to resolve the lstat() will | Todd 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-12 | document net.inet.icmp.redir{accept,timeout} | Eric Jackson | |
2002-01-11 | typo | Jun-ichiro itojun Hagino | |
From: Thomas Klausner <wiz@danbala.ifoer.tuwien.ac.at> | |||
2002-01-11 | document new sysctl for vfs.nfs.norsvport | Nathan Binkert | |
2002-01-10 | sigprocmask should return 0 on success, fixes powerpc ntpdate problem. | Dale Rahn | |
2002-01-10 | Change 1st arg in pthread_attr_getdetachstate to const. | Federico G. Schwindt | |
2002-01-10 | From FreeBSD: fix conversion from msec to timespec. | Federico G. Schwindt | |
2002-01-07 | If the handler for SIGCHLD is set to SIG_IGN, act as if the | Todd 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-04 | system calls are made thru _thread_sys_* with weak symbols of the real name | Dale Rahn | |
pointing to the _thread_sys_ version. ok pval, fgs | |||
2002-01-04 | Let's start by making the stack pointer 64 bit and nobody will get hurt. | Artur Grabowski | |
2002-01-04 | longjmp(..., 0) is not really legal, but all other archs I've looked | Artur Grabowski | |
at make sure that setjmp doesn't return 0 if longjmp is passed a 0. Avoid surprises. | |||
2002-01-04 | comment out the pending signals check by now; it was not suppose to be | Federico G. Schwindt | |
there yet. | |||
2002-01-03 | Always 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-02 | correct fram size. | Artur Grabowski | |
pointed out by marc@ | |||
2002-01-02 | label abort() from inside library as ILLEGAL | Theo de Raadt | |
2002-01-02 | KNF | Theo de Raadt | |
2002-01-02 | more pid_t use | Theo de Raadt | |
2002-01-02 | fp and pc are 64 bit. | Artur Grabowski | |
And just to make things more fun -1, is not a misaligned stack on sparc64. | |||
2002-01-02 | fp and pc are 64 bit. | Artur Grabowski | |