Skip to content

Commit e946d56

Browse files
committed
2 parents c9d474d + 8830c7b commit e946d56

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

readme.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ without code changes, for example, on dynamically linked ELF-based systems (Linu
2020

2121
Notable aspects of the design include:
2222

23-
- __small and consistent__: the library is less than 3500 LOC using simple and
23+
- __small and consistent__: the library is about 6k LOC using simple and
2424
consistent data structures. This makes it very suitable
2525
to integrate and adapt in other projects. For runtime systems it
2626
provides hooks for a monotonic _heartbeat_ and deferred freeing (for
@@ -42,7 +42,7 @@ Notable aspects of the design include:
4242
- __first-class heaps__: efficiently create and use multiple heaps to allocate across different regions.
4343
A heap can be destroyed at once instead of deallocating each object separately.
4444
- __bounded__: it does not suffer from _blowup_ \[1\], has bounded worst-case allocation
45-
times (_wcat_), bounded space overhead (~0.2% meta-data, with at most 16.7% waste in allocation sizes),
45+
times (_wcat_), bounded space overhead (~0.2% meta-data, with at most 12.5% waste in allocation sizes),
4646
and has no internal points of contention using only atomic operations.
4747
- __fast__: In our benchmarks (see [below](#performance)),
4848
_mimalloc_ always outperforms all other leading allocators (_jemalloc_, _tcmalloc_, _Hoard_, etc),
@@ -56,8 +56,9 @@ Enjoy!
5656

5757
### Releases
5858

59-
* 2019-08-10, `v1.0.6`: pre-release 6: various performance improvements.
59+
* 2019-10-07, `v1.1.0`: stable release 1.1.
6060
* 2019-09-01, `v1.0.8`: pre-release 8: more robust windows dynamic overriding, initial huge page support.
61+
* 2019-08-10, `v1.0.6`: pre-release 6: various performance improvements.
6162

6263
# Building
6364

0 commit comments

Comments
 (0)