Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
New module: mmalloc (mapped malloc)
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 5 May 2010 21:38:00 +0000 (21:38 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Wed, 5 May 2010 21:38:00 +0000 (21:38 +0000)
commit33a9da85867c540b95d99573defe39b47c5f6f45
treebc1e4df0b97f6a9ce0732bb1502982853b381009
parentb582c36a70a50b376da63ceacf2354d1a47c5ac7
New module: mmalloc (mapped malloc)

git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@7693 48e7efb5-ca39-0410-a469-dd3cf9ba447f
29 files changed:
.gitignore
ChangeLog
acmacro/bfd_need_declarations.m4 [new file with mode: 0644]
configure.ac
src/Makefile.am
src/xbt/mmalloc/COPYING.LIB [new file with mode: 0644]
src/xbt/mmalloc/TODO [new file with mode: 0644]
src/xbt/mmalloc/attach.c [new file with mode: 0644]
src/xbt/mmalloc/detach.c [new file with mode: 0644]
src/xbt/mmalloc/include/ansidecl.h [new file with mode: 0644]
src/xbt/mmalloc/keys.c [new file with mode: 0644]
src/xbt/mmalloc/mcalloc.c [new file with mode: 0644]
src/xbt/mmalloc/mfree.c [new file with mode: 0644]
src/xbt/mmalloc/mm.c [new file with mode: 0644]
src/xbt/mmalloc/mmalloc.c [new file with mode: 0644]
src/xbt/mmalloc/mmalloc.h [new file with mode: 0644]
src/xbt/mmalloc/mmalloc.info [new file with mode: 0644]
src/xbt/mmalloc/mmalloc.texi [new file with mode: 0644]
src/xbt/mmalloc/mmap-sup.c [new file with mode: 0644]
src/xbt/mmalloc/mmcheck.c [new file with mode: 0644]
src/xbt/mmalloc/mmemalign.c [new file with mode: 0644]
src/xbt/mmalloc/mmprivate.h [new file with mode: 0644]
src/xbt/mmalloc/mmstats.c [new file with mode: 0644]
src/xbt/mmalloc/mmtrace.awk [new file with mode: 0644]
src/xbt/mmalloc/mmtrace.c [new file with mode: 0644]
src/xbt/mmalloc/mrealloc.c [new file with mode: 0644]
src/xbt/mmalloc/mvalloc.c [new file with mode: 0644]
src/xbt/mmalloc/sbrk-sup.c [new file with mode: 0644]
src/xbt/mmalloc/test/mmalloc_test.c [new file with mode: 0644]