Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
replace dumb deployment file by C
[simgrid.git] / src / mc / mc_base.h
1 /* Copyright (c) 2008-2015. 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 SIMGRID_MC_BASE_H
8 #define SIMGRID_MC_BASE_H
9
10 #include <xbt/misc.h>
11 #include <simgrid/simix.h>
12 #include "simgrid_config.h"
13 #include "src/internal_config.h"
14 #include "src/simix/smx_private.h"
15 #include "mc/mc.h"
16
17 SG_BEGIN_DECL()
18
19 /** Check if the given simcall can be resolved
20  *
21  *  \return `TRUE` or `FALSE`
22  */
23 XBT_PRIVATE int MC_request_is_enabled(smx_simcall_t req);
24
25 /** Check if the given simcall is visible
26  *
27  *  \return `TRUE` or `FALSE`
28  */
29 XBT_PRIVATE int MC_request_is_visible(smx_simcall_t req);
30
31 /** Execute everything which is invisible
32  *
33  *  Execute all the processes that are ready to run and all invisible simcalls
34  *  iteratively until there doesn't remain any. At this point, the function
35  *  returns to the caller which can handle the visible (and ready) simcalls.
36  */
37 XBT_PRIVATE void MC_wait_for_requests(void);
38
39 XBT_PRIVATE extern double *mc_time;
40
41 /** Execute a given simcall */
42 XBT_PRIVATE void MC_simcall_handle(smx_simcall_t req, int value);
43
44 SG_END_DECL()
45
46 #endif