Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Mark some issues as fixed
[simgrid.git] / src / mc / mc_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 #include <xbt/dynar.h>
7
8 #include "mc/datatypes.h"
9 #include "mc_process.h"
10
11 #include "xbt/misc.h"           /* SG_BEGIN_DECL */
12
13 SG_BEGIN_DECL();
14
15 void MC_heap_region_ignore_insert(mc_heap_ignore_region_t region);
16 void MC_process_ignore_memory(mc_process_t process, void *addr, size_t size);
17 void MC_stack_area_add(stack_region_t stack_area);
18
19 xbt_dynar_t MC_checkpoint_ignore_new(void);
20
21
22 SG_END_DECL();