Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix the build of sysv contexts on windows
[simgrid.git] / src / mc / mc_memory.cpp
1 /* Copyright (c) 2008-2015. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #include <sys/stat.h>
8 #include <fcntl.h>
9
10 #include "xbt/log.h"
11
12 #include "mc/mc.h"
13 #include "src/mc/mc_private.h"
14
15 extern "C" {
16
17 XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_memory, mc,
18                                 "Logging specific to MC (memory)");
19
20 /* Initialize the model-checker memory subsystem */
21 /* It creates the two heap regions: std_heap and mc_heap */
22 void MC_memory_init()
23 {
24   if (!malloc_use_mmalloc()) {
25     xbt_die("Model-checking support is not enabled: run with simgrid-mc.");
26   }
27 }
28
29 /* Finalize the memory subsystem */
30 #include "src/xbt_modinter.h"
31 void MC_memory_exit(void)
32 {
33 }
34
35 }