Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
try to fix the build on centos
[simgrid.git] / src / mc / mc_ignore.hpp
1 /* Copyright (c) 2015-2018. 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 "src/internal_config.h"
10
11 #if HAVE_UCONTEXT_H
12 #include <ucontext.h> /* context relative declarations */
13
14 XBT_PUBLIC void MC_register_stack_area(void* stack, smx_actor_t process, ucontext_t* context, size_t size);
15
16 #endif
17
18 #endif