diff options
Diffstat (limited to 'src/daemon/memorypool.c')
-rw-r--r-- | src/daemon/memorypool.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/daemon/memorypool.c b/src/daemon/memorypool.c index fa0b4d6b..4a183bcb 100644 --- a/src/daemon/memorypool.c +++ b/src/daemon/memorypool.c | |||
@@ -25,6 +25,11 @@ | |||
25 | 25 | ||
26 | #include "memorypool.h" | 26 | #include "memorypool.h" |
27 | 27 | ||
28 | // define MAP_ANONYMOUS for Mac OS X | ||
29 | #if defined(MAP_ANON) && !defined(MAP_ANONYMOUS) | ||
30 | #define MAP_ANONYMOUS MAP_ANON | ||
31 | #endif | ||
32 | |||
28 | struct MemoryPool | 33 | struct MemoryPool |
29 | { | 34 | { |
30 | 35 | ||