Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Apply the default settings of 'smpi/buffering' too
[simgrid.git] / src / mc / mc_ignore.hpp
1 /* Copyright (c) 2015-2019. 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_MC_IGNORE_HPP
7 #define SIMGRID_MC_IGNORE_HPP
8
9 #include "simgrid/forward.h"
10 #include "src/internal_config.h"
11
12 #if HAVE_UCONTEXT_H
13 #include <ucontext.h> /* context relative declarations */
14
15 XBT_PUBLIC void MC_register_stack_area(void* stack, ucontext_t* context, size_t size);
16
17 #endif
18
19 #endif