X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/07c319ec54d6fc778ee3cc5e75a747242006723e..a846b9415542cdaa8ba5d0f7efeadecb56ba7c2c:/src/mc/mc_memory.c diff --git a/src/mc/mc_memory.c b/src/mc/mc_memory.c index 769f948288..d6a5063b7e 100644 --- a/src/mc/mc_memory.c +++ b/src/mc/mc_memory.c @@ -23,8 +23,8 @@ void MC_memory_init() xbt_assert(std_heap != NULL); /* Create the second region a page after the first one ends + safety gap */ - raw_heap_fd = shm_open("raw_heap", O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR); - raw_heap = mmalloc_attach(raw_heap_fd, (char*)(std_heap) + STD_HEAP_SIZE + getpagesize()); +/* raw_heap_fd = shm_open("raw_heap", O_RDWR | O_CREAT | O_TRUNC, S_IRUSR | S_IWUSR);*/ + raw_heap = mmalloc_attach(-1, (char*)(std_heap) + STD_HEAP_SIZE + getpagesize()); xbt_assert(raw_heap != NULL); } @@ -34,4 +34,4 @@ void MC_memory_exit(void) { if (raw_heap) mmalloc_detach(raw_heap); -} \ No newline at end of file +}