Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
1998-11-10 | getenv() result is read-only, unless you're looking for trouble. | Marc Espie | |
1998-08-28 | define hppa as an ieee | Michael Shalayeff | |
1998-08-15 | document the common misuse of realloc | Theo de Raadt | |
1998-08-12 | Make code ANSI/ISO C conformant. Formerly undefined constructs were used | Niklas Hallqvist | |
making load/store architectures (like mips&alpha) fail whn compiled with gcc -O2. | |||
1998-08-11 | Temporary fix for a GCC aliasing bug/misfeature that hits here | Niklas Hallqvist | |
1998-08-06 | Don't enumerate every arch in the #if since all OpenBSD platforms use the ↵ | Todd C. Miller | |
same values for malloc_pageshift and malloc_minsize except for sparc | |||
1998-07-16 | change to lite2 getenv(); getenv(NULL) now returns NULL | Theo de Raadt | |
1998-07-05 | add .Xr's for all the random functions in libc | Todd C. Miller | |
1998-06-28 | Oh fun, mucking about with files used on all archs. | Dale S. Rahn | |
This is one of many places in the source that have #if defined("list all architectures") Is there some possible way to eliminate, reduce these or at least have a file that describes all occurrances so that when a new port is done this could be addressed. like the recent hppa port, does it need to take a look at this???? | |||
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-05-18 | readlink(path, buf, sizeof buf-1). Never forget that -1. | Theo de Raadt | |
1998-05-05 | indent nice | Theo de Raadt | |
1998-04-28 | use Xr more often | Theo de Raadt | |
1998-04-25 | indent; dima | Theo de Raadt | |
1998-02-07 | More XPG4.2 -- | Todd C. Miller | |
setstate takes a const parameter don't ever spew to stderr, just return NULL | |||
1998-02-06 | size_t n in initstate(); XPG | Theo de Raadt | |
1998-02-02 | Don't override environ if realloc() fails. Pointed out by | Todd C. Miller | |
Dave Bodenstab <imdave@mcs.net> | |||
1998-01-02 | make mmap() return void *, add MAP_FAILED | Theo de Raadt | |
1997-08-23 | Change realloc(foo,0) to behave like malloc(0). Both now return a pointer | Per Fogelstrom | |
to an object of size zero. This will allow testing on reallocs return value to determine if the operation was successful or not. | |||
1997-08-22 | malloc_init() should try to not modify errno | Theo de Raadt | |
1997-08-20 | Move getsubopt(3) to stdlib like lite2 and XPG4.2 say... | Todd C. Miller | |
Update man page from lite2 while I'm at it. | |||
1997-08-18 | Install a64l/l64a man page. Also, tsearch.3 and friends were not | Todd C. Miller | |
being installed either. | |||
1997-08-17 | Man page for a64l(3) and l64a(3), based on a64l.3 from the MiNT docs 0.1. | Todd C. Miller | |
Also make a64l(3) and l64a(3) deal reasonably with inapropriate input. The standard does not require this, but it does not disallow it either. | |||
1997-07-17 | fix Xr | Theo de Raadt | |
1997-07-02 | Use MALLOC_EXTRA_SANITY consistently (EXTRA_SANITY was used in many places) | Todd C. Miller | |
sizeof *pt -> sizeof *px (point to same type of struct but looked wrong). | |||
1997-07-01 | Include <stdlib.h> for malloc() proto. | Todd C. Miller | |
1997-06-22 | Make sure we don't get stuck in a loop when trying to clean up stdio | Thorsten Lockert | |
1997-06-20 | add ELOOP support; shigio@wafu.netgate.net | Theo de Raadt | |
1997-06-20 | typecastorama | Theo de Raadt | |
1997-06-15 | First cut at documentinf tsearch(3) -- needs work. | Todd C. Miller | |
1997-06-14 | Fix decl for tfind(3) | Todd C. Miller | |
1997-06-14 | damn, no tsearch(3) | Theo de Raadt | |
1997-06-13 | PD tsearch as reqd by xpg; by esr | Theo de Raadt | |
1997-06-02 | incorrect description; bgrayson@ece.utexas.edu | Theo de Raadt | |
1997-05-31 | Make it possible to not output warnings (errors causing aborts are always | Thorsten Lockert | |
output). | |||
1997-05-31 | Add x/X option to behave like X11 xmalloc; from FreeBSD | Thorsten Lockert | |
Reduce diffs wrt. FreeBSD some | |||
1997-05-30 | for i in `find . -name \*.[123456789] -exec grep '^.Dd ' {} /dev/null \; | \ | Theo de Raadt | |
grep '"' | cut -d':' -f1`; do sed -e '/^.Dd /s/"//g' -e '/^.Dd /s/\(^.Dd [A-Za-z]*\) \(.*\)$/\1, \2/' <$i >x cat x > $i done | |||
1997-04-30 | Be more careful with mixing types | Thorsten Lockert | |
1997-04-05 | Check for overflow; from FreeBSD | Thorsten Lockert | |
1997-04-03 | an -> a; soil@quick.net | Theo de Raadt | |
1997-03-25 | Ok here is the mvme88k userland, minus a few important pieces. | Dale S. Rahn | |
as, ld change need to be merged. It is known that shared libraries and C++ do not work. If anyone wants to step forward and take over the mvme88k port please do. It was dumped on me when the original developer, Nivas, left his previous job and started a new one. I am trying to get the port in a shape that someone could take over. | |||
1997-02-11 | is we were set[ug]id an unitialized ptr bit us | Niklas Hallqvist | |