You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Notice: MinGW Build is broken and may not be fixed in a near future. See [this PR](https://github.com/microsoft/snmalloc/pull/217) in the upstream.**
2
+
3
+
**Notice: MinGW Build is broken and may not be fixed in a near future.
4
+
See [this PR](https://github.com/microsoft/snmalloc/pull/217) in the upstream.**
`snmalloc-rs` provides a wrapper for [`microsoft/snmalloc`](https://github.com/microsoft/snmalloc) to make it usable as a global allocator for rust.
9
-
snmalloc is a research allocator. Its key design features are:
10
+
`snmalloc-rs` provides a wrapper for [`microsoft/snmalloc`](https://github.com/microsoft/snmalloc) to make it usable as
11
+
a global allocator for rust. snmalloc is a research allocator. Its key design features are:
10
12
11
13
- Memory that is freed by the same thread that allocated it does not require any synchronising operations.
12
-
- Freeing memory in a different thread to initially allocated it, does not take any locks and instead uses a novel message passing scheme to return the memory to the original allocator, where it is recycled.
14
+
- Freeing memory in a different thread to initially allocated it, does not take any locks and instead uses a novel
15
+
message passing scheme to return the memory to the original allocator, where it is recycled.
13
16
- The allocator uses large ranges of pages to reduce the amount of meta-data required.
14
17
15
-
Some old benchmark results are available in the [`snmalloc` paper](https://github.com/microsoft/snmalloc/blob/master/snmalloc.pdf). Some recent benchmark results are listed at
0 commit comments