Age | Commit message (Expand) | Author |
2008-08-22 | Smarter implementation of calloc(3), which uses the fact that mmap(2) | Otto Moerbeek |
2008-08-07 | small cleanup of error/warning strings | Otto Moerbeek |
2008-07-28 | Almost complete rewrite of malloc, to have a more efficient data | Otto Moerbeek |
2008-06-13 | remove _MALLOC_LOCK_INIT; major bump; ok deraadt@ | Otto Moerbeek |
2008-05-19 | remove recalloc(3); it is buggy and impossible to repair without big | Otto Moerbeek |
2008-04-13 | Use arc4random_buf() when requesting more than a single word of output | Damien Miller |
2008-02-20 | use pgfree pool like other code does to reserve free list slots. | Otto Moerbeek |
2007-09-03 | add recaloc(3) | Todd C. Miller |
2007-02-12 | get cheaper random bytes, less waste and no getpid() calls, which are | Otto Moerbeek |
2006-12-19 | a failed mmap returns MAP_FAILED, not NULL. found while exercising pax | Otto Moerbeek |
2006-10-24 | respond to ben hawkes's ruxcon presentation. | Ted Unangst |
2006-05-14 | Fix the second malloc_ulimit regression: maintaining the free list | Otto Moerbeek |
2006-04-24 | Do not leave an hole in the directory list if allocation of the | Otto Moerbeek |
2006-04-18 | delint; original from deraadt@ with fixes from tdeval@ and me; | Otto Moerbeek |
2006-02-14 | quick path for free(0) | Marc Espie |
2005-10-10 | Remove a few warnings. Those were not apparent thanks to a bug in gcc 2.95. | Marc Espie |
2005-10-05 | further knf and cleaning; ok tdeval | Theo de Raadt |
2005-10-05 | first KNF (no binary diffs) | Theo de Raadt |
2005-08-08 | zap remaining rcsid. | Marc Espie |
2005-07-07 | Fix the unmapping of freed pages, leaving just 64k worth of cache pages. | Thierry Deval |
2005-06-07 | adding pointer protection to 'G' was too heavyweight. Since malloc guard | Ted Unangst |
2005-05-24 | handle sizeof(void *) allocations specially when using malloc guard. | Ted Unangst |
2005-03-31 | MMAP(2) malloc, here we go again. | Thierry Deval |
2004-08-11 | Back out to brk(2) version. | Thierry Deval |
2004-08-05 | - Remove the userland data limit check. It's mmap(2)'s job. | Thierry Deval |
2004-08-04 | Missing check for NULL. | Thierry Deval |
2004-08-01 | After a long gestation period, here comes our custom version of malloc(3) | Thierry Deval |
2004-04-12 | Clean up malloc_active state when aborting. | Thierry Deval |
2004-02-19 | Sanity fix. | Thierry Deval |
2003-11-19 | only whine about recursion once, so we don't get into problems with loops. | Ted Unangst |
2003-10-16 | by popular demand, malloc guard pages. insert an unreadable/unwriteable | Ted Unangst |
2003-10-15 | abort on errors by default. workaround so running out of memory isn't | Ted Unangst |
2003-10-02 | two minor fixes. set errno on recursive calls. ENOMEM suggested by marc@. | Ted Unangst |
2003-09-30 | full stop. reverse course. remove all periods, so as to be aligned | Ted Unangst |
2003-09-27 | remove register. end all sentences with periods. | Ted Unangst |
2003-08-04 | ansify function arguments | Jean-Francois Brousseau |
2003-07-19 | - just warn in case of mmap/brk failure | Thierry Deval |
2003-07-13 | Fix two cases where malloc() returns NULL but does not set errno to ENOMEM. | Otto Moerbeek |
2003-05-14 | Unbreak 64-bit archs... | Thierry Deval |
2003-05-14 | Pointer cleaning. ok ian@, tedu@, krw@ | Thierry Deval |
2003-01-14 | Add sanity check to prevent int oflow for very large allocations. | Todd C. Miller |
2002-11-27 | Honour malloc_junk ('J') with realloc(3), and fix page_dir shrink update. | Thierry Deval |
2002-11-25 | Warn if atexit(3) fails. Change some tabs to spaces. Use | Chad Loder |
2002-11-05 | thread safe libc -- 2nd try. OK miod@, millert@ | Marco S Hyman |
2002-11-03 | back out previous patch.. there are still some vax/m68k issues | Marco S Hyman |
2002-11-03 | libc changes for thread safety. Tested on: | Marco S Hyman |
2002-05-27 | unsigned vs unsigned int | Theo de Raadt |
2002-02-16 | Part one of userland __P removal. Done with a simple regexp with some minor ... | Todd C. Miller |
2002-01-23 | THREAD_UNLOCK() on error before returning; millert@ ok. | Federico G. Schwindt |
2001-12-05 | correct an alignment mis-conception for malloc(0) returned regions. | Thierry Deval |