lemoncake

rbtree based memory allocator
git clone git://git.2f30.org/lemoncake
Log | Files | Refs | README | LICENSE

commit d23369c183e0df4e5deed0038d429518a9439966
parent c3b972ee0b73d99cf0fd411268ec1d6a19d33d00
Author: sin <sin@2f30.org>
Date:   Sun,  4 Aug 2013 17:10:15 +0100

Add comment for ALIGN

Diffstat:
Mlemoncake.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/lemoncake.c b/lemoncake.c @@ -13,6 +13,7 @@ #include "tree.h" #include "spinlock.h" +/* Memory alignment for the allocation functions */ enum { ALIGN = 4 * sizeof(size_t) }; static void dumpstats(void);