summaryrefslogtreecommitdiff
path: root/lib/libc/gen
AgeCommit message (Collapse)Author
1999-05-29repairs; go back over some old files, because we should properly distinguishAaron Campbell
between NUL and NULL, i.e., don't use the .Dv (defined variable) macro when referring to an ASCII NUL
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-28proper const semantics for dirname & basename.Marc Espie
(this follows FreeBSD and Linux. Single Unix 2 is still illogical)
1999-05-28fix tytypos.Marc Espie
1999-05-27more missing .El macros filled inAaron Campbell
1999-05-27or'ing -> OR'ingAaron Campbell
1999-05-27sync cgetset() Fn definition with prototype from stdlib.hAaron Campbell
1999-05-25punctuationAaron Campbell
1999-05-25all functions need a return type and at least one arg, even if it's voidAaron Campbell
1999-05-25add .Ft macros and move the argument type into each function definitionAaron Campbell
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-05-20add missing #include's from SYNOPSIS sectionAaron Campbell
1999-05-19add default value for mssdflt. more rationale might be needed.Niels Provos
1999-05-19document tcp.sack and tcp.mssdflt for sysctlNiels Provos
1999-05-171) Only do pointer adjusting if realloc() changed our pointerTodd C. Miller
2) Only adjust pointers based on ftp_path, not fts_name. 3) Adjust the entries in the file list, as well as the trees, if needed. Loosely based on a patch from Stas Kisel <stas@SONET.CRIMEA.UA>
1999-05-16Cleanup 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-14Removed duplicated references; millertAlex Feldman
1999-05-10correct some Xr's which referred to the wrong man page sectionsAaron Campbell
1999-04-02.Pp macros do not belong immiedately after .Sh section header linesAaron Campbell
1999-03-29initgroups(3) should not spew to stderr; giles@nemeton.com.auTodd C. Miller
Also document the NGROUPS limit.
1999-03-10fix comma splices involving 'however'Paul Janzen
1999-03-10Daylight Saving Time, not savingsPaul Janzen
1999-02-27make function names the correct caseTheo de Raadt
1999-02-25Don't segfault when sysctl failsArtur Grabowski
1999-02-25constify getcap(3). This fixes a warning in libcurses and doesn'tTodd C. Miller
really change the API since those parameters that was been constified really are not modified by getcap(3) routines.
1999-02-16daemon returns intTheo de Raadt
1999-01-08when malloc fails set bufsize to 0 or all other calls to getmntinfo will failArtur Grabowski
1998-12-21md spinlockDavid Leonard
1998-11-25clarify; d@Aaron Campbell
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-18negative change strtol()Theo de Raadt
1998-11-15ftok() takes int id; xpgTheo de Raadt
1998-10-05add a reference to fork(2) \Artur Grabowski
from woods@mail.weird.com
1998-10-04For 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-24back out gzip support, it will not make it for 2.4Todd C. Miller
1998-09-24note that the caller is responsible for freeing the pointer returned by ↵Todd C. Miller
setmode()
1998-09-08__alpha__, not alphaTodd C. Miller
1998-09-07make work on pmaxTodd C. Miller
1998-09-06More man page fixes. Spelling, grammar, some typos. Lots of double-wordAaron Campbell
occurrences squashed as well.
1998-09-05Add support for nlisting against a gzipped kernel, #ifdef'd out sinceTodd C. Miller
it requires linking with -lz. savecore will use this to operate on gzipped kernels.
1998-08-29man page repairs; aaron@ug.cs.dal.caTheo de Raadt
1998-08-27re-initialize the tty buffer with "/dev/" everytime through; spotted by dTheo de Raadt
1998-08-23Strip 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-21I committed the wrong version before, here is the correct oneTodd C. Miller
1998-08-21For a.out use read, not mmap, to get the string table so this works onTodd 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-17typoTodd C. Miller
1998-08-15fix realloc patchTheo de Raadt