--- dead_pool.c.orig 2007-03-28 12:43:06.000000000 +0100
+++ dead_pool.c 2007-03-28 12:43:21.000000000 +0100
newpool = (dead_pool *) mmap(0, sizeof(dead_pool),
- MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+ MAP_SHARED | MAP_ANON, -1, 0);
show_msg(MSGERR, "init_pool: unable to mmap deadpool "
"(tried to map %d bytes)\n", sizeof(dead_pool));
newpool->entries = (pool_ent *) mmap(0, newpool->n_entries * sizeof(pool_ent),
- MAP_SHARED | MAP_ANONYMOUS, -1, 0);
+ MAP_SHARED | MAP_ANON, -1, 0);
munmap((void *)newpool, sizeof(dead_pool));
show_msg(MSGERR, "init_pool: unable to mmap deadpool entries "