diff options
| author | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-10 20:16:12 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fl.fischer@fau.de> | 2019-11-10 20:16:12 +0100 |
| commit | bbab5a629ae653899b9f613057916eaf95fc60f8 (patch) | |
| tree | 9d09807c52f583ff5984b04f119d66e55fd34af5 /src/allocators/bumpptr.py | |
| parent | cbe2a0a0f3bb681e65cf26ddc239403a42a77bcb (diff) | |
| download | allocbench-bbab5a629ae653899b9f613057916eaf95fc60f8.tar.gz allocbench-bbab5a629ae653899b9f613057916eaf95fc60f8.zip | |
add bumpptr variations allocator definitions
Diffstat (limited to 'src/allocators/bumpptr.py')
| -rw-r--r-- | src/allocators/bumpptr.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/allocators/bumpptr.py b/src/allocators/bumpptr.py index 98cba4b..37fbfe5 100644 --- a/src/allocators/bumpptr.py +++ b/src/allocators/bumpptr.py @@ -27,3 +27,11 @@ from src.allocator import Allocator, BUILDDIR bumpptr = Allocator("bumpptr", LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc.so"), color="xkcd:black") + +bumpptr_single_tsd = Allocator("bumpptr_single_tsd", + LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc_single_tsd.so"), + color="xkcd:black") + +bumpptr_always_align = Allocator("bumpptr_always_align", + LD_PRELOAD=os.path.join(BUILDDIR, "bumpptr_alloc_always_align.so"), + color="xkcd:black") |
