]> git.lizzy.rs Git - rust.git/commit
add jemalloc to the runtime
authorDaniel Micay <danielmicay@gmail.com>
Mon, 20 May 2013 02:22:13 +0000 (22:22 -0400)
committerDaniel Micay <danielmicay@gmail.com>
Sat, 1 Jun 2013 14:45:11 +0000 (10:45 -0400)
commitcff203ef762dae6f5f93b55c0d491788b24ea6c4
treee4f6277027d7c05a5c52d45cadaacd708fa4ef20
parentb8391ccea0b2e2718a4d4ef999e9f03583c7ddea
add jemalloc to the runtime
100 files changed:
.gitattributes
src/rt/jemalloc/COPYING [new file with mode: 0644]
src/rt/jemalloc/ChangeLog [new file with mode: 0644]
src/rt/jemalloc/INSTALL [new file with mode: 0644]
src/rt/jemalloc/Makefile.in [new file with mode: 0644]
src/rt/jemalloc/README [new file with mode: 0644]
src/rt/jemalloc/VERSION [new file with mode: 0644]
src/rt/jemalloc/autogen.sh [new file with mode: 0755]
src/rt/jemalloc/bin/jemalloc.sh [new file with mode: 0644]
src/rt/jemalloc/bin/jemalloc.sh.in [new file with mode: 0644]
src/rt/jemalloc/bin/pprof [new file with mode: 0755]
src/rt/jemalloc/config.guess [new file with mode: 0755]
src/rt/jemalloc/config.stamp.in [new file with mode: 0644]
src/rt/jemalloc/config.sub [new file with mode: 0755]
src/rt/jemalloc/configure [new file with mode: 0755]
src/rt/jemalloc/configure.ac [new file with mode: 0644]
src/rt/jemalloc/doc/html.xsl.in [new file with mode: 0644]
src/rt/jemalloc/doc/jemalloc.3 [new file with mode: 0644]
src/rt/jemalloc/doc/jemalloc.xml.in [new file with mode: 0644]
src/rt/jemalloc/doc/manpages.xsl.in [new file with mode: 0644]
src/rt/jemalloc/doc/stylesheet.xsl [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/arena.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/atomic.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/base.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/bitmap.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/chunk.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/chunk_dss.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/chunk_mmap.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/ckh.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/ctl.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/extent.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/hash.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/huge.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/jemalloc_internal.h.in [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/mb.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/mutex.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/private_namespace.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/prng.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/prof.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/ql.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/qr.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/quarantine.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/rb.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/rtree.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/size_classes.sh [new file with mode: 0755]
src/rt/jemalloc/include/jemalloc/internal/stats.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/tcache.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/tsd.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/internal/util.h [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/jemalloc.h.in [new file with mode: 0644]
src/rt/jemalloc/include/jemalloc/jemalloc_defs.h.in [new file with mode: 0644]
src/rt/jemalloc/include/msvc_compat/inttypes.h [new file with mode: 0644]
src/rt/jemalloc/include/msvc_compat/stdbool.h [new file with mode: 0644]
src/rt/jemalloc/include/msvc_compat/stdint.h [new file with mode: 0644]
src/rt/jemalloc/include/msvc_compat/strings.h [new file with mode: 0644]
src/rt/jemalloc/install-sh [new file with mode: 0755]
src/rt/jemalloc/src/arena.c [new file with mode: 0644]
src/rt/jemalloc/src/atomic.c [new file with mode: 0644]
src/rt/jemalloc/src/base.c [new file with mode: 0644]
src/rt/jemalloc/src/bitmap.c [new file with mode: 0644]
src/rt/jemalloc/src/chunk.c [new file with mode: 0644]
src/rt/jemalloc/src/chunk_dss.c [new file with mode: 0644]
src/rt/jemalloc/src/chunk_mmap.c [new file with mode: 0644]
src/rt/jemalloc/src/ckh.c [new file with mode: 0644]
src/rt/jemalloc/src/ctl.c [new file with mode: 0644]
src/rt/jemalloc/src/extent.c [new file with mode: 0644]
src/rt/jemalloc/src/hash.c [new file with mode: 0644]
src/rt/jemalloc/src/huge.c [new file with mode: 0644]
src/rt/jemalloc/src/jemalloc.c [new file with mode: 0644]
src/rt/jemalloc/src/mb.c [new file with mode: 0644]
src/rt/jemalloc/src/mutex.c [new file with mode: 0644]
src/rt/jemalloc/src/prof.c [new file with mode: 0644]
src/rt/jemalloc/src/quarantine.c [new file with mode: 0644]
src/rt/jemalloc/src/rtree.c [new file with mode: 0644]
src/rt/jemalloc/src/stats.c [new file with mode: 0644]
src/rt/jemalloc/src/tcache.c [new file with mode: 0644]
src/rt/jemalloc/src/tsd.c [new file with mode: 0644]
src/rt/jemalloc/src/util.c [new file with mode: 0644]
src/rt/jemalloc/src/zone.c [new file with mode: 0644]
src/rt/jemalloc/test/ALLOCM_ARENA.c [new file with mode: 0644]
src/rt/jemalloc/test/ALLOCM_ARENA.exp [new file with mode: 0644]
src/rt/jemalloc/test/aligned_alloc.c [new file with mode: 0644]
src/rt/jemalloc/test/aligned_alloc.exp [new file with mode: 0644]
src/rt/jemalloc/test/allocated.c [new file with mode: 0644]
src/rt/jemalloc/test/allocated.exp [new file with mode: 0644]
src/rt/jemalloc/test/allocm.c [new file with mode: 0644]
src/rt/jemalloc/test/allocm.exp [new file with mode: 0644]
src/rt/jemalloc/test/bitmap.c [new file with mode: 0644]
src/rt/jemalloc/test/bitmap.exp [new file with mode: 0644]
src/rt/jemalloc/test/jemalloc_test.h.in [new file with mode: 0644]
src/rt/jemalloc/test/mremap.c [new file with mode: 0644]
src/rt/jemalloc/test/mremap.exp [new file with mode: 0644]
src/rt/jemalloc/test/posix_memalign.c [new file with mode: 0644]
src/rt/jemalloc/test/posix_memalign.exp [new file with mode: 0644]
src/rt/jemalloc/test/rallocm.c [new file with mode: 0644]
src/rt/jemalloc/test/rallocm.exp [new file with mode: 0644]
src/rt/jemalloc/test/thread_arena.c [new file with mode: 0644]
src/rt/jemalloc/test/thread_arena.exp [new file with mode: 0644]
src/rt/jemalloc/test/thread_tcache_enabled.c [new file with mode: 0644]
src/rt/jemalloc/test/thread_tcache_enabled.exp [new file with mode: 0644]