Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
9e74d3976ff7e9209ef2e76a3bc82861214a4449
[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 #ifdef __cplusplus
11 #include <vector>
12 #endif
13
14 #include <xbt/base.h>
15
16 typedef struct s_smx_simcall s_smx_simcall_t, *smx_simcall_t;
17
18 #ifdef __cplusplus
19
20 namespace simgrid {
21 namespace mc {
22
23 /** Can this requests can be executed?
24  *
25  *  Most requests are always enabled but WAIT and WAITANY
26  *  are not always enabled: a WAIT where the communication does not
27  *  have both a source and a destination yet is not enabled
28  *  (unless timeout is enabled in the wait and enabeld in SimGridMC).
29  */
30 XBT_PRIVATE bool request_is_enabled(smx_simcall_t req);
31
32 /** Execute everything which is invisible
33  *
34  *  Execute all the processes that are ready to run and all invisible simcalls
35  *  iteratively until there doesn't remain any. At this point, the function
36  *  returns to the caller which can handle the visible (and ready) simcalls.
37  */
38 XBT_PRIVATE void wait_for_requests(void);
39
40 XBT_PRIVATE extern std::vector<double> processes_time;
41
42 /** Execute a given simcall */
43 XBT_PRIVATE void handle_simcall(smx_simcall_t req, int req_num);
44
45 /** Check if the given simcall is visible
46  *
47  *  \return `TRUE` or `FALSE`
48  */
49 XBT_PRIVATE bool request_is_visible(smx_simcall_t req);
50
51 }
52 }
53
54 #endif
55
56 #endif