Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-01-08 | when malloc fails set bufsize to 0 or all other calls to getmntinfo will fail | Artur Grabowski | |
1998-12-21 | md spinlock | David Leonard | |
1998-11-25 | clarify; d@ | Aaron Campbell | |
1998-11-20 | Add 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-18 | negative change strtol() | Theo de Raadt | |
1998-11-15 | ftok() takes int id; xpg | Theo de Raadt | |
1998-10-05 | add a reference to fork(2) \ | Artur Grabowski | |
from woods@mail.weird.com | |||
1998-10-04 | For a.out, try mmap first (like we used to do) and only malloc() if that ↵ | Todd C. Miller | |
fails (for ksyms). Also clean up some mmap/malloc leaks. | |||
1998-09-24 | back out gzip support, it will not make it for 2.4 | Todd C. Miller | |
1998-09-24 | note that the caller is responsible for freeing the pointer returned by ↵ | Todd C. Miller | |
setmode() | |||
1998-09-08 | __alpha__, not alpha | Todd C. Miller | |
1998-09-07 | make work on pmax | Todd C. Miller | |
1998-09-06 | More man page fixes. Spelling, grammar, some typos. Lots of double-word | Aaron Campbell | |
occurrences squashed as well. | |||
1998-09-05 | Add support for nlisting against a gzipped kernel, #ifdef'd out since | Todd C. Miller | |
it requires linking with -lz. savecore will use this to operate on gzipped kernels. | |||
1998-08-29 | man page repairs; aaron@ug.cs.dal.ca | Theo de Raadt | |
1998-08-27 | re-initialize the tty buffer with "/dev/" everytime through; spotted by d | Theo de Raadt | |
1998-08-23 | Strip leading '_' from symbol to lookup if symbols in file lack leading '_'. | Todd C. Miller | |
Needed to make nlist of /dev/ksyms work correctly on non-a.out kernels. | |||
1998-08-21 | I committed the wrong version before, here is the correct one | Todd C. Miller | |
1998-08-21 | For a.out use read, not mmap, to get the string table so this works on | Todd C. Miller | |
/dev/ksyms. mmap was only used because, at the time, free did not give memory back to the system (our malloc/free uses mmap/munmap so we are ok). | |||
1998-08-17 | typo | Todd C. Miller | |
1998-08-15 | fix realloc patch | Theo de Raadt | |
1998-08-14 | realloc repair | Theo de Raadt | |
1998-07-24 | Man pages Xrefs. | Marc Espie | |
1998-07-14 | avoid calling __has_yppw() everytime through getpwent(), by caching the YP ↵ | Theo de Raadt | |
status along with the open file status | |||
1998-07-07 | include <signal.h> not <sys/signal.h> | Theo de Raadt | |
1998-07-07 | per XPG, gethostname() with a short buffer returns truncated data - not ENOMEM. | Theo de Raadt | |
As permitted, make the truncated buffer be NUL terminated. make getdomainname() match. | |||
1998-07-04 | split dirname and basename man pages; add dirname | Theo de Raadt | |
1998-07-04 | split dirname and basename man pages | Theo de Raadt | |
1998-07-03 | do not free() before last ref; kmayer@freegate.com | Theo de Raadt | |
1998-06-27 | ktrace not trace | Artur Grabowski | |
1998-06-26 | fix prototypes | Theo de Raadt | |
1998-06-23 | Fix snprintf return value usage. | Todd C. Miller | |
1998-06-21 | Remove the advertising clause in my old license, it impedes free use | Todd C. Miller | |
of the code as a large number of similar clauses makes it impossible to write an ad for a product using the code... | |||
1998-06-15 | use Bx macro for BSD versions | Michael Shalayeff | |
1998-06-11 | Add a mention of the tcp ident sysctl. | Bob Beck | |
1998-06-08 | finish; kleink | Theo de Raadt | |
1998-06-08 | do not needlessly uppercase function names | Theo de Raadt | |
1998-06-03 | zero sigaction before use | Theo de Raadt | |
1998-06-02 | add sysctl and sysconf support for sysvsem, sysvshm, sysvmsg, and fsync; ↵ | Theo de Raadt | |
mostly from kleink | |||
1998-06-02 | tell people to use sysconf(3) now; kleink | Theo de Raadt | |
1998-05-13 | change size parameter to size_t | Theo de Raadt | |
1998-05-06 | use errno.h | Theo de Raadt | |
1998-04-28 | use Xr more often | Theo de Raadt | |
1998-03-19 | zap FILE * after closing it | Theo de Raadt | |
1998-03-19 | some -Wall | Todd C. Miller | |
1998-03-17 | do not ferror() after fclose(); dholland@eecs.harvard.edu | Theo de Raadt | |
1998-03-07 | .Bx Open -> .Ox 2.x | Todd C. Miller | |
1998-03-06 | And terminate SyslogAddr.sun_path (duh!) | brian | |
1998-03-06 | sizeof(SyslogAddr.sun_path) -> sizeof(SyslogAddr.sun_path) - 1 | brian | |
pointed out by: theo | |||
1998-03-05 | Initialise sockaddr::sa_len (stopping a pretty nasty | brian | |
stack scribble). Also, SyslogAddr is a sockaddr_un, not a sockaddr. |