add SLOB allocator

This commit is contained in:
Sven M. Hallberg 2015-12-27 14:45:21 +01:00
parent efea10417c
commit 30cc709b8c
7 changed files with 389 additions and 2 deletions

View file

@ -66,7 +66,8 @@ misc_hammer_parts = [
'platform_bsdlike.c',
'pprint.c',
'registry.c',
'system_allocator.c']
'system_allocator.c',
'sloballoc.c']
ctests = ['t_benchmark.c',
't_bitreader.c',
@ -74,7 +75,8 @@ ctests = ['t_benchmark.c',
't_parser.c',
't_grammar.c',
't_misc.c',
't_regression.c']
't_mm.c',
't_regression.c']
libhammer_shared = env.SharedLibrary('hammer', parsers + backends + misc_hammer_parts)
libhammer_static = env.StaticLibrary('hammer', parsers + backends + misc_hammer_parts)