aboutsummaryrefslogtreecommitdiff
path: root/src/allocators/je_tc_super.py
blob: 62456104b9771d9ed63f6cc4b1811b02b9cafc01 (plain)
1
2
3
4
5
6
7
from src.allocators.glibc import glibc
from src.allocators.tcmalloc import tcmalloc
from src.allocators.jemalloc import jemalloc
from src.allocators.supermalloc import supermalloc


allocators = [glibc, tcmalloc, jemalloc, supermalloc]