jemallocator icon indicating copy to clipboard operation
jemallocator copied to clipboard

Rust allocator using jemalloc as a backend

Results 50 jemallocator issues
Sort by recently updated
recently updated
newest added

I'm trying to get jemalloc to do heap profiling by configuring it in the environment: ```bash export MALLOC_CONF=prof:true,lg_prof_interval:30,lg_prof_sample:17 ``` Profiling is enabled: ```toml [dependencies.jemallocator] version = "*" features = ["profiling"]...

Please consider add support for Apple M1

Please have a look at a minimal hello world program to reproduce: [https://github.com/chriphus/jemalloc-bug](https://github.com/chriphus/jemalloc-bug) Jemalloc crashes on M1 Macs when building for an x86_64 target. Note that this bug does not...

Hi all, hi @gnzlbg, thank you for this great projects! Correct me if I'm wrong, but this projects seems unmaintainened unfortunately. Some trivial PRs are pending (e.g. #152, #164, #161,...

I'm reporting this even though the crate is unmaintained because it ended up wasting a lot of my own time. 5.2 and 5.2.1 have some fixes for `max_background_threads` specifically and...

When building inside a docker environment, jemalloc-sys fails to build. I'm not 100% sure if this is an issue in jemalloc-sys or jemalloc itself. Proof of concept: https://github.com/Firstyear/jemallocator_build_docker `docker build...

Hi all! We've been trying out bazel to build our Rust code, and jemallocator was the hardest to get to work, but as it turns out, this is the only...

build in /mnt/f/dot, failed with message: ``` @DESKTOP-L8C67IT:/mnt/f/dot/polkadot$ cargo build --release Compiling zstd-sys v1.4.20+zstd.1.4.9 Compiling jemalloc-sys v0.3.2 Compiling libz-sys v1.0.25 Compiling toml v0.5.6 Compiling camino v1.0.4 Compiling semver v0.11.0 Compiling...

Our project currently relies on `jemalloc` for all targets except `msvc` ones; recently I tried cross compiling from Linux to windows via mingw64 on Ubuntu. However, the build `cargo build...