summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-22 22:36:04 +0200
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2011-08-22 22:36:04 +0200
commitc48d0e4512357678f1f527db013ead12f7c5e753 (patch)
tree7682ada8b895d87496faae836de0d273c764b0b5
parentdc642e0d98d9f0ed2506cf5abcbbf49be1c0cca7 (diff)
Make ipc_space_zone not exhaustible
Users of ipc_space_create() actually assume that it succeeds. * ipc/ipc_init.c (ipc_bootstrap): Create ipc_space_zone without EXHAUSTIBLE flag.
-rw-r--r--ipc/ipc_init.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ipc/ipc_init.c b/ipc/ipc_init.c
index 90e6b783..e9ca64db 100644
--- a/ipc/ipc_init.c
+++ b/ipc/ipc_init.c
@@ -80,7 +80,7 @@ ipc_bootstrap(void)
ipc_space_zone = zinit(sizeof(struct ipc_space), 0,
ipc_space_max * sizeof(struct ipc_space),
sizeof(struct ipc_space),
- IPC_ZONE_TYPE, "ipc spaces");
+ 0, "ipc spaces");
ipc_tree_entry_zone =
zinit(sizeof(struct ipc_tree_entry), 0,