Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-08-09 | For man pages that describe multiple functions, split the .Nm arguments | Aaron Campbell | |
onto separate lines in the NAME section. | |||
2000-04-30 | #ifdef vax -> #ifdef __vax__ | Brandon Creighton | |
2000-04-20 | Flesh out stdlib function man pages. | Aaron Campbell | |
2000-04-20 | - Formatting repairs and standardizations. | Aaron Campbell | |
- s/MESSAGES/DIAGNOSTICS/, and put message descriptions in a nice list. - Talk more about how using malloc() in signal handlers is bad. | |||
2000-04-10 | missing THREAD_UNLOCK; netch@segfault.kiev.ua | Theo de Raadt | |
2000-04-04 | Fix the leak for real (that's what I get for hacking when i can't sleep). | Todd C. Miller | |
2000-04-04 | Fix an fd leak if the read from /dev/arandom fails. Pointed out by | Todd C. Miller | |
Markus Friedl. | |||
2000-04-04 | MLINK srandomdev | Todd C. Miller | |
2000-04-03 | Add srandomdev() from FreeBSD for use by sendmail and others. | Todd C. Miller | |
2000-03-04 | In Unix land we prefer "whitespace" to "white space" or "white-space". At | Aaron Campbell | |
least, this is the impression I get from looking at a lot of Perl docs. | |||
2000-03-01 | typo fix; halogen@nol.net | Theo de Raadt | |
2000-02-25 | repair prototypes; cky@pobox.com | Theo de Raadt | |
2000-01-25 | repair | Theo de Raadt | |
2000-01-22 | Use .Er macro when referring to errno error names. | Aaron Campbell | |
2000-01-19 | Clarify and mention that errno is set to ENOMEM on failure of malloc(), | Paul Janzen | |
calloc(), and realloc(). Idea from NetBSD. | |||
2000-01-19 | Max value returned is 2^31 - 1, regardless of the arch-dependent LONG_MAX. | Paul Janzen | |
2000-01-06 | include thread_private.h | David Leonard | |
1999-11-17 | Add missing MLINKs | Todd C. Miller | |
1999-11-10 | Tweaks; millert@ | Aaron Campbell | |
1999-11-10 | calloc.c is back | Todd C. Miller | |
1999-11-10 | calloc() needs to be separate from malloc in case a user wants to have | Todd C. Miller | |
their own malloc() implementation. | |||
1999-11-09 | Merge calloc(3) man page into malloc.3; as suggested by millert@ | Aaron Campbell | |
1999-11-09 | Move calloc() into malloc.c and only zero out the area if malloc() | Todd C. Miller | |
didn't do so for us. By default, malloc() zeros out the space it allocates but the programmer cannot rely on this as it is implementation- specific (and configurable via /etc/malloc.conf) | |||
1999-09-27 | Formatting and grammar. | Aaron Campbell | |
1999-09-16 | use writev() where possible | Theo de Raadt | |
1999-09-14 | Supply examples and discuss limitations. | Paul Janzen | |
1999-09-13 | use stronger language when pointing people at strtol() | Theo de Raadt | |
1999-09-07 | typo | Marc Espie | |
1999-09-06 | succesful -> successful | Aaron Campbell | |
1999-07-20 | better english; deraadt@/millert@ | Aaron Campbell | |
1999-07-04 | trash some old leftover macros and replace them with -mdoc macros | Aaron Campbell | |
1999-07-02 | remove extra comma from .Dd arguments: "Month ##, ####" is the correct format, | Aaron Campbell | |
not "Month, ##, ####" | |||
1999-06-29 | first round of repairs on stdlib | Aaron Campbell | |
1999-05-28 | "SEE ALSO" -> SEE ALSO, missed these files before | Aaron Campbell | |
1999-05-27 | more missing .El macros filled in | Aaron Campbell | |
1999-05-27 | getopt(3) does not return -1 when encountering unrecognized options | Aaron Campbell | |
1999-05-25 | punctuation | Aaron Campbell | |
1999-05-23 | remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common | Aaron Campbell | |
is used instead; kwesterback@home.com | |||
1999-05-16 | Cleanup xrefs under SEE ALSO. Specifically: | Alex Feldman | |
- Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries. | |||
1999-05-10 | correct some Xr's which referred to the wrong man page sections | Aaron Campbell | |
1999-03-23 | Clarify realloc return value | Todd C. Miller | |
1999-03-11 | fix more comma splices that involve misuse of conjunctive adverbs | Paul Janzen | |
1999-02-27 | make function names the correct case | Theo de Raadt | |
1999-02-03 | wrong ret type for write define (millert@) | David Leonard | |
1999-02-01 | malloc can't use write() if it fails very early, so use the unwrapped ↵ | David Leonard | |
syscall _thread_sys_write() if we are threaded | |||
1998-12-07 | No need to cast to they type we already are. Also minor KNF | Todd C. Miller | |
1998-12-07 | remove bogus divide, fixes pr #656 | Todd C. Miller | |
1998-11-22 | bad long | Theo de Raadt | |
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-17 | add MLINK for malloc.conf.5 man page, also add FILES section to malloc.3; fries@ | Aaron Campbell | |