Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
00a453a39d2eb8386a1b2ba5b64c348de381b94b
[simgrid.git] / src / mc / mc_base.h
1 /* Copyright (c) 2008-2014. The SimGrid Team.
2  * All rights reserved.                                                     */
3
4 /* This program is free software; you can redistribute it and/or modify it
5  * under the terms of the license (GNU LGPL) which comes with this package. */
6
7 #ifndef MC_BASE_H
8 #define MC_BASE_H
9
10 #include <simgrid/simix.h>
11 #include "simgrid_config.h"
12 #include "internal_config.h"
13 #include "../simix/smx_private.h"
14
15 SG_BEGIN_DECL()
16
17 /** Environment variable name set by `simgrid-mc` to enable MC support in the
18  *  children MC processes
19  */
20 #define MC_ENV_VARIABLE "SIMGRIC_MC"
21
22 /** Check if the given simcall can be resolved
23  *
24  *  \return `TRUE` or `FALSE`
25  */
26 int MC_request_is_enabled(smx_simcall_t req);
27
28 /** Check if the given simcall is visible
29  *
30  *  \return `TRUE` or `FALSE`
31  */
32 int MC_request_is_visible(smx_simcall_t req);
33
34 /** Execute everything which is invisible
35  *
36  *  Execute all the processes that are ready to run and all invisible simcalls
37  *  iteratively until there doesn't remain any. At this point, the function
38  *  returns to the caller which can handle the visible (and ready) simcalls.
39  */
40 void MC_wait_for_requests(void);
41
42 extern double *mc_time;
43
44 SG_END_DECL()
45
46 #endif