Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
normalize the function names wrt to the rest of XBT
[simgrid.git] / src / mc / mc_memory.c
1 /* Copyright (c) 2008-2012 Da SimGrid Team. All rights reserved.            */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include <sys/stat.h>
7 #include <fcntl.h>
8 #include "mc/mc.h"
9 #include "mc_private.h"
10 #include "xbt/log.h"
11 #define _GNU_SOURCE
12
13
14
15 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory, mc,
16                                 "Logging specific to MC (memory)");
17
18 /* Pointers to each of the heap regions to use */
19 void *std_heap = NULL;          /* memory erased each time the MC stuff rollbacks to the beginning. Almost everything goes here */
20 void *raw_heap = NULL;          /* memory persistent over the MC rollbacks. Only MC stuff should go there */
21
22 /* Initialize the model-checker memory subsystem */
23 /* It creates the two heap regions: std_heap and raw_heap */
24 void MC_memory_init()
25 {
26   /* Create the first region HEAP_OFFSET bytes after the heap break address */
27   std_heap = mmalloc_get_default_md();
28   xbt_assert(std_heap != NULL);
29
30   /* Create the second region a page after the first one ends + safety gap */
31   raw_heap = xbt_mheap_new(-1, (char*)(std_heap) + STD_HEAP_SIZE + getpagesize());
32   xbt_assert(raw_heap != NULL);
33 }
34
35 /* Finalize the memory subsystem */
36 #include "xbt_modinter.h"
37 void MC_memory_exit(void)
38 {
39   if (raw_heap)
40     xbt_mheap_destroy(raw_heap);
41 }