|
@@ -1,5 +1,5 @@
|
|
|
set(WITH_SYSTEM_CALLS "none" CACHE STRING "Choose what system calls can be used, options are: none, sbrk, mmap")
|
|
|
-set(RAW_BLOCKS_TYPE "freelist" CACHE STRING "Choose what raw blocks can be used, options are: freelist, bitmap")
|
|
|
+set(RAW_BLOCKS_TYPE "bitmap" CACHE STRING "Choose what raw blocks can be used, options are: freelist, bitmap")
|
|
|
option(HAVE_LOCKS "Build with POSIX locking mechanisms" ON)
|
|
|
option(WITH_REALLOC "Build with realloc" OFF)
|
|
|
set(TRACE_LEVEL 2 CACHE INTEGER "Choose the trace level, options are: 0, 1, 2 and 3")
|
|
@@ -15,6 +15,8 @@ option(FREELIST_COALESCE_AFTER_SPLIT "Try to coalesce blocks after split" OFF)
|
|
|
|
|
|
option(SORT_POLICY "Choose the block sorting policy, options are: lifo, fifo, size, address")
|
|
|
|
|
|
+set(BITMAP_RESOLUTION 256 CACHE INTEGER "Choose the size of cells in bitmap-organised raw blocks")
|
|
|
+
|
|
|
set(REQUEST_SIZE_INFO ON)
|
|
|
|
|
|
set(WITH_SYSTEM_CALLS "none")
|