diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/system/alloc.nim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/system/alloc.nim b/lib/system/alloc.nim index 6f11941a0..6e7801be5 100644 --- a/lib/system/alloc.nim +++ b/lib/system/alloc.nim @@ -62,6 +62,8 @@ type freeList: ptr FreeCell free: int # how many bytes remain acc: int # accumulator for small object allocation + when defined(cpu32): + align: int data: AlignType # start of usable memory BigChunk = object of BaseChunk # not necessarily > PageSize! |