Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
COPYING.LIB | HD | 13-Jan-2016 | 24.7 KiB | |||
ChangeLog | H A D | 13-Jan-2016 | 35 | 3 | 1 | |
Makefile | H A D | 13-Jan-2016 | 2 KiB | 58 | 24 | |
OChangeLog | H A D | 13-Jan-2016 | 1.1 KiB | 35 | 25 | |
README | H A D | 13-Jan-2016 | 658 | 13 | 9 | |
calloc.c | H A D | 13-Jan-2016 | 1.4 KiB | 42 | 14 | |
cfree.c | H A D | 13-Jan-2016 | 1.2 KiB | 46 | 18 | |
free.c | H A D | 13-Jan-2016 | 6.3 KiB | 213 | 141 | |
getpagesize.h | H A D | 17-Jan-2016 | 774 | 43 | 31 | |
gmalloc-head.c | H A D | 13-Jan-2016 | 252 | 9 | 1 | |
gmalloc.c | H A D | 13-Jan-2016 | 39.9 KiB | 1,353 | 799 | |
malloc-find.c | H A D | 13-Jan-2016 | 2.1 KiB | 62 | 23 | |
malloc.c | H A D | 13-Jan-2016 | 10.7 KiB | 378 | 249 | |
malloc.h | H A D | 13-Jan-2016 | 9.4 KiB | 301 | 161 | |
mcheck.c | H A D | 13-Jan-2016 | 5.5 KiB | 219 | 171 | |
mem-limits.h | H A D | 13-Jan-2016 | 4 KiB | 188 | 122 | |
memalign.c | H A D | 13-Jan-2016 | 1.9 KiB | 69 | 42 | |
morecore.c | H A D | 13-Jan-2016 | 1.6 KiB | 56 | 27 | |
mstats.c | H A D | 13-Jan-2016 | 1.4 KiB | 42 | 15 | |
mtrace.awk | H A D | 13-Jan-2016 | 1.3 KiB | 51 | 45 | |
mtrace.c | H A D | 13-Jan-2016 | 4.8 KiB | 187 | 119 | |
ralloc.c | H A D | 13-Jan-2016 | 27.3 KiB | 1,090 | 671 | |
realloc.c | H A D | 13-Jan-2016 | 6.3 KiB | 222 | 130 | |
valloc.c | H A D | 13-Jan-2016 | 1.5 KiB | 50 | 22 | |
vm-limit.c | H A D | 13-Jan-2016 | 3.6 KiB | 138 | 75 |
README
1This is the standalone distribution of GNU malloc. 2GNU malloc is part of the GNU C Library, but is also distributed separately. 3 4If you find bugs in GNU malloc, send reports to bug-glibc@prep.ai.mit.edu. 5 6GNU malloc is free software. See the file COPYING.LIB for copying conditions. 7 8The makefile builds libmalloc.a and gmalloc.o. If you are using GNU malloc 9to replace your system's existing malloc package, it is important to make 10sure you get all GNU functions, not some of the GNU functions and some from 11the system library. gmalloc.o has all the functions in one file, so using 12that will make sure you don't accidentally mix the two malloc packages. 13