Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix refcounting of smpi::Info.
[simgrid.git] / src / mc / mc_memory.cpp
1 /* Copyright (c) 2008-2019. 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 "mc/mc.h"
11 #include "src/mc/mc_private.hpp"
12 #include "src/xbt/mmalloc/mmprivate.h"
13
14 /* Initialize the model-checker memory subsystem */
15 /* It creates the two heap regions: std_heap and mc_heap */
16 void MC_memory_init()
17 {
18   if (not malloc_use_mmalloc())
19     xbt_die("Model-checking support is not enabled: run with simgrid-mc.");
20 }