summaryrefslogtreecommitdiff
path: root/allocator.c
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-10-25 17:18:41 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2019-10-25 17:18:41 -0400
commite7432359e33880e7d705d1e86397fe676e601505 (patch)
treed7a74aee21214d900825f9833f82a21840fbda56 /allocator.c
parent7352f2c357619e23ed348bdadd48f38f9acd4d86 (diff)
started fixing leaking
Diffstat (limited to 'allocator.c')
-rw-r--r--allocator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/allocator.c b/allocator.c
index 14b1a40..588483a 100644
--- a/allocator.c
+++ b/allocator.c
@@ -1,4 +1,4 @@
-#define NO_ALLOCATOR 1 /* useful for debugging; valgrind checks writing past the end of a malloc, but that won't work with an allocator */
+/* #define NO_ALLOCATOR 1 /\* useful for debugging; valgrind checks writing past the end of a malloc, but that won't work with an allocator *\/ */
/* number of bytes a page hold, not including the header */
#define PAGE_BYTES (16384 - sizeof(Page))
#define PAGE_MAX_ALIGNS (PAGE_BYTES / sizeof(max_align_t))