Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add aligned_alloc(3). | ed | 2012-01-09 | 1 | -96/+0 |
| | | | | | | | | | The C11 folks reinvented the wheel by introducing an aligned version of malloc(3) called aligned_alloc(3), instead of posix_memalign(3). Instead of returning the allocation by reference, it returns the address, just like malloc(3). Reviewed by: jasone@ | ||||
* | Add a HISTORY section. | jasone | 2007-03-28 | 1 | -0/+5 |
| | |||||
* | Revise markup in recently added manpages. | ru | 2006-09-30 | 1 | -4/+6 |
| | |||||
* | In preparation for a new malloc implementation: | jasone | 2006-01-12 | 1 | -0/+89 |
* Add posix_memalign(). * Move calloc() from calloc.c to malloc.c. Add a calloc() implementation in rtld-elf in order to make the loader happy (even though calloc() isn't used in rtld-elf). * Add _malloc_prefork() and _malloc_postfork(), and use them instead of directly manipulating __malloc_lock. Approved by: phk, markm (mentor) |