Logo AND Algorithmique Numérique Distribuée

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