diff options
| author | Aiden Gall <aiden@aidengall.xyz> | 2025-02-09 18:02:15 +0000 |
|---|---|---|
| committer | Aiden Gall <aiden@aidengall.xyz> | 2025-02-09 18:02:15 +0000 |
| commit | d52282ec3292a1e366d3837e56ef1fb5f07ce178 (patch) | |
| tree | f3b52e1d2aa44fd88808ab9da6530df3ffee0935 /config.inc | |
initial commit
Diffstat (limited to 'config.inc')
| -rw-r--r-- | config.inc | 9 |
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 |
