summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
Commit message (Expand)AuthorAgeFilesLines
* Conditionally expand the size_invs lookup table in arena_run_reg_dalloc()Jason Evans2006-07-271-1/+12
* Use 4 as QUANTUM_2POW_MIN on arm as it is on any other architecture, to avoidOlivier Houchard2006-07-271-1/+1
* Fix cpp logic in arena_malloc() to adjust size when assertions are enabled,Jason Evans2006-07-271-23/+19
* Use some math tricks in arena_run_reg_dalloc() to avoid actual division, asJason Evans2006-07-011-83/+90
* Make the behavior of malloc(0) standards-compliant by getting rid of nil,Jason Evans2006-06-301-48/+46
* twalk() expects an `action' function not a comparison function.Giorgos Keramidas2006-06-231-1/+1
* Add a missing case for the switch statement in arena_run_reg_dalloc(). [1]Jason Evans2006-06-201-8/+20
* o .Xr strtonum(3).Maxim Konovalov2006-05-202-0/+2
* Correct decoding a string containing '/'.Jung-uk Kim2006-05-191-1/+1
* Increase the minimum chunk size by a power of two (32kB --> 64kB, assumingJason Evans2006-05-101-2/+2
* Change the semantics of brk_max to dynamically deal with data segmentJason Evans2006-04-271-71/+83
* s/soley/solelyJens Schweikhardt2006-04-131-1/+1
* Add an unreachable return statement, in order to avoid a compiler warningJason Evans2006-04-051-0/+1
* Only initialize the first per-chunk page map element for free runs. ThisJason Evans2006-04-051-31/+16
* Add malloc_usable_size() to the RETURN VALUES section.Jason Evans2006-04-041-1/+6
* Add init_lock, and use it to protect against allocator initializationJason Evans2006-04-041-8/+21
* Refactor per-run bitmap manipulation functions so that bitmap offsets onlyJason Evans2006-04-041-69/+131
* Optimize runtime performance, primary using the following techniques:Jason Evans2006-03-301-285/+294
* Add malloc_usable_size(3).Jason Evans2006-03-284-3/+47
* Allow the 'n' option to decrease the number of arenas below the default,Jason Evans2006-03-261-2/+16
* Add comments and reformat/rearrange code. There are no significantJason Evans2006-03-261-208/+224
* Convert TINY_MIN_2POW from a cpp macro to tiny_min_2pow (a variable), andJason Evans2006-03-241-21/+37
* Add USE_BRK-specific code in malloc_init_hard() to allow the firstJason Evans2006-03-241-65/+110
* Separate completely full runs from runs that are merely almost full, soJason Evans2006-03-201-61/+71
* Optimize realloc() to reallocate in place if the old and new sizes areJason Evans2006-03-191-105/+167
* Modify allocation policy, in order to avoid excessive fragmentation forJason Evans2006-03-172-2503/+1070
* Add a non-optional newline after ".Bx".Ruslan Ermilov2006-03-151-1/+2
* Revert previous changes as we do support the .Ox macro for OpenBSD.Andre Oppermann2006-03-151-2/+4
* POSIXed strtoll() (and ours one too) can set errno to EINVAL, so checkAndrey A. Chernov2006-03-141-1/+1
* Fix HISTORY and point to OpenBSD.Andre Oppermann2006-03-141-5/+2
* Import of OpenBSD's strtonum(3) which is a nicer version of strtoll(3)Andre Oppermann2006-03-144-3/+227
* Add each directory's symbol map file to SYM_MAPS.Daniel Eischen2006-03-131-0/+2
* Add symbol maps and initial symbol version definitions to libc.Daniel Eischen2006-03-131-0/+98
* Fix typo in manual page reference.Wojciech A. Koszek2006-02-261-1/+1
* Remove extra slash from pty slave device name returned by ptsname.Alexander Kabaev2006-02-131-1/+1
* Fix calculation of the number of arenas to use on multi-processor systems.Jason Evans2006-02-041-1/+1
* Expand contractions.Joel Dahl2006-02-011-1/+1
* If the sysctl kern.pts.enable doesn't exist, check that /dev/ptmx is there,Olivier Houchard2006-01-291-2/+7
* Remove unwarranted uses of 'goto'.Jason Evans2006-01-271-203/+153
* Add NO_MALLOC_EXTRAS, so that various extra features that can causeJason Evans2006-01-271-3/+16
* Fix the type of a statistics counter (unsigned --> unsigned long).Jason Evans2006-01-271-1/+1
* Clean up statistics gathering and printing.Jason Evans2006-01-271-71/+64
* Optimize arena_bin_pop() to reduce the number of separator operations.Jason Evans2006-01-261-13/+10
* ptsname() bits for pts.Olivier Houchard2006-01-261-5/+45
* Remove a redundant variable assignment in arena_reg_frag_alloc().Jason Evans2006-01-251-1/+0
* If no coalesced exact-fit small regions are available, but delayed exact-Jason Evans2006-01-251-173/+186
* Make the 'C' and 'c' malloc options consistent with other options; 'C'Jason Evans2006-01-231-2/+2
* In arena_chunk_reg_alloc(), try to avoid touching the last page in theJason Evans2006-01-231-7/+24
* Use uintptr_t rather than size_t when casting pointers to integers. Also,Jason Evans2006-01-201-44/+45
* Revert addtion of assertions in revision 1.99. These assertions causeJason Evans2006-01-191-7/+0