Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d5f5529877191bdd5a54032738d6e344a169fa88
[simgrid.git] / src / mc / mcer_ignore.h
1 /* Copyright (c) 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 #ifndef SIMGRID_MCER_IGNORE_H
8 #define SIMGRID_MCER_IGNORE_H
9
10 #include <xbt/dynar.h>
11
12 #include "mc/datatypes.h"
13 #include "mc/Process.hpp"
14
15 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
16
17 SG_BEGIN_DECL();
18
19 XBT_PRIVATE void MCer_ignore_global_variable(const char *var_name);
20 XBT_PRIVATE void MC_heap_region_ignore_insert(mc_heap_ignore_region_t region);
21 XBT_PRIVATE void MC_heap_region_ignore_remove(void *address, size_t size);
22
23 SG_END_DECL();
24
25 #endif