Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
codacy
[simgrid.git] / src / mc / mc_ignore.h
1 /* Copyright (c) 2015-2017. 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_H
7 #define SIMGRID_MC_IGNORE_H
8
9 #include "src/internal_config.h"
10
11 #if HAVE_UCONTEXT_H
12 #include <ucontext.h>           /* context relative declarations */
13
14 SG_BEGIN_DECL();
15 XBT_PUBLIC(void) MC_register_stack_area(void *stack, smx_actor_t process, ucontext_t* context, size_t size);
16 SG_END_DECL();
17
18 #endif
19
20 #endif