summaryrefslogtreecommitdiff
path: root/config.inc
diff options
context:
space:
mode:
Diffstat (limited to 'config.inc')
-rw-r--r--config.inc9
1 files changed, 9 insertions, 0 deletions
diff --git a/config.inc b/config.inc
new file mode 100644
index 0000000..ae7ee48
--- /dev/null
+++ b/config.inc
@@ -0,0 +1,9 @@
+; stack size in bytes. bottom of stack must be 16 byte aligned, therefore
+; STACK_CAPACITY must be a multiple of 16
+STACK_CAPACITY = 64*4096
+
+; heap allocation implementation. supported options are:
+; - posix_memalign (POSIX.1-2001)
+; - aligned_alloc (C11)
+; - mmap (linux)
+MALLOC equ aligned_alloc