Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
model-checker : move functions about snapshot comparison in a separate file mc_compare.c
[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
12 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory, mc,
13                                 "Logging specific to MC (memory)");
14
15 /* Pointers to each of the heap regions to use */
16 void *std_heap = NULL;          /* memory erased each time the MC stuff rollbacks to the beginning. Almost everything goes here */
17 void *raw_heap = NULL;          /* memory persistent over the MC rollbacks. Only MC stuff should go there */
18
19 /* Initialize the model-checker memory subsystem */
20 /* It creates the two heap regions: std_heap and raw_heap */
21 void MC_memory_init()
22 {
23   /* Create the first region HEAP_OFFSET bytes after the heap break address */
24   std_heap = mmalloc_get_default_md();
25   xbt_assert(std_heap != NULL);
26
27   /* Create the second region a page after the first one ends + safety gap */
28   raw_heap = xbt_mheap_new(-1, (char*)(std_heap) + STD_HEAP_SIZE + getpagesize());
29   xbt_assert(raw_heap != NULL);
30 }
31
32 /* Finalize the memory subsystem */
33 #include "xbt_modinter.h"
34 void MC_memory_exit(void)
35 {
36   if (raw_heap)
37     xbt_mheap_destroy(raw_heap);
38 }