├── .appveyor.yml ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .travis.yml ├── Cargo.toml ├── Cross.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── benches └── roundtrip.rs ├── ci ├── dox.sh └── run.sh ├── jemalloc-ctl ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md ├── rustfmt.toml └── src │ ├── arenas.rs │ ├── config.rs │ ├── error.rs │ ├── keys.rs │ ├── lib.rs │ ├── macros.rs │ ├── opt.rs │ ├── raw.rs │ ├── stats.rs │ ├── stats_print.rs │ └── thread.rs ├── jemalloc-sys ├── Cargo.toml ├── README.md ├── build.rs ├── configure │ ├── VERSION │ └── configure ├── src │ └── lib.rs ├── tests │ ├── malloc_conf_empty.rs │ ├── malloc_conf_set.rs │ └── unprefixed_malloc.rs └── update_jemalloc.md ├── jemallocator-global ├── Cargo.toml ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── src │ └── lib.rs ├── src └── lib.rs ├── systest ├── Cargo.toml ├── build.rs └── src │ └── main.rs └── tests ├── background_thread_defaults.rs ├── background_thread_enabled.rs ├── ffi.rs ├── grow_in_place.rs ├── malloctl.rs ├── shrink_in_place.rs ├── smoke.rs ├── smoke_ffi.rs └── usable_size.rs /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | target 2 | Cargo.lock 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Cross.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/Cross.toml -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/README.md -------------------------------------------------------------------------------- /benches/roundtrip.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/benches/roundtrip.rs -------------------------------------------------------------------------------- /ci/dox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/ci/dox.sh -------------------------------------------------------------------------------- /ci/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/ci/run.sh -------------------------------------------------------------------------------- /jemalloc-ctl/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/Cargo.toml -------------------------------------------------------------------------------- /jemalloc-ctl/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/LICENSE-APACHE -------------------------------------------------------------------------------- /jemalloc-ctl/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/LICENSE-MIT -------------------------------------------------------------------------------- /jemalloc-ctl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/README.md -------------------------------------------------------------------------------- /jemalloc-ctl/rustfmt.toml: -------------------------------------------------------------------------------- 1 | max_width = 79 -------------------------------------------------------------------------------- /jemalloc-ctl/src/arenas.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/arenas.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/config.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/config.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/error.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/error.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/keys.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/keys.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/lib.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/macros.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/macros.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/opt.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/opt.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/raw.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/raw.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/stats.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/stats.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/stats_print.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/stats_print.rs -------------------------------------------------------------------------------- /jemalloc-ctl/src/thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-ctl/src/thread.rs -------------------------------------------------------------------------------- /jemalloc-sys/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/Cargo.toml -------------------------------------------------------------------------------- /jemalloc-sys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/README.md -------------------------------------------------------------------------------- /jemalloc-sys/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/build.rs -------------------------------------------------------------------------------- /jemalloc-sys/configure/VERSION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/configure/VERSION -------------------------------------------------------------------------------- /jemalloc-sys/configure/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/configure/configure -------------------------------------------------------------------------------- /jemalloc-sys/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/src/lib.rs -------------------------------------------------------------------------------- /jemalloc-sys/tests/malloc_conf_empty.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/tests/malloc_conf_empty.rs -------------------------------------------------------------------------------- /jemalloc-sys/tests/malloc_conf_set.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/tests/malloc_conf_set.rs -------------------------------------------------------------------------------- /jemalloc-sys/tests/unprefixed_malloc.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/tests/unprefixed_malloc.rs -------------------------------------------------------------------------------- /jemalloc-sys/update_jemalloc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemalloc-sys/update_jemalloc.md -------------------------------------------------------------------------------- /jemallocator-global/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemallocator-global/Cargo.toml -------------------------------------------------------------------------------- /jemallocator-global/LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemallocator-global/LICENSE-APACHE -------------------------------------------------------------------------------- /jemallocator-global/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemallocator-global/LICENSE-MIT -------------------------------------------------------------------------------- /jemallocator-global/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemallocator-global/README.md -------------------------------------------------------------------------------- /jemallocator-global/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/jemallocator-global/src/lib.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/src/lib.rs -------------------------------------------------------------------------------- /systest/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/systest/Cargo.toml -------------------------------------------------------------------------------- /systest/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/systest/build.rs -------------------------------------------------------------------------------- /systest/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/systest/src/main.rs -------------------------------------------------------------------------------- /tests/background_thread_defaults.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/background_thread_defaults.rs -------------------------------------------------------------------------------- /tests/background_thread_enabled.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/background_thread_enabled.rs -------------------------------------------------------------------------------- /tests/ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/ffi.rs -------------------------------------------------------------------------------- /tests/grow_in_place.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/grow_in_place.rs -------------------------------------------------------------------------------- /tests/malloctl.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/malloctl.rs -------------------------------------------------------------------------------- /tests/shrink_in_place.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/shrink_in_place.rs -------------------------------------------------------------------------------- /tests/smoke.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/smoke.rs -------------------------------------------------------------------------------- /tests/smoke_ffi.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/smoke_ffi.rs -------------------------------------------------------------------------------- /tests/usable_size.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gnzlbg/jemallocator/HEAD/tests/usable_size.rs --------------------------------------------------------------------------------