Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[mc] Remove ugly #include
[simgrid.git] / src / mc / mc_request.h
1 /* Copyright (c) 2007-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 #include <simgrid_config.h>
8
9 #include "../simix/smx_private.h"
10
11 #ifndef MC_REQUEST_H
12 #define MC_REQUEST_H
13
14 SG_BEGIN_DECL()
15
16 typedef enum e_mc_request_type {
17   MC_REQUEST_SIMIX,
18   MC_REQUEST_EXECUTED,
19   MC_REQUEST_INTERNAL,
20 } e_mc_request_type_t;
21
22 XBT_INTERNAL int MC_request_depend(smx_simcall_t req1, smx_simcall_t req2);
23 XBT_INTERNAL char* MC_request_to_string(smx_simcall_t req, int value, e_mc_request_type_t type);
24 XBT_INTERNAL unsigned int MC_request_testany_fail(smx_simcall_t req);
25 /*int MC_waitany_is_enabled_by_comm(smx_req_t req, unsigned int comm);*/
26 XBT_INTERNAL int MC_request_is_visible(smx_simcall_t req);
27
28 /** Can this requests can be executed.
29  *
30  *  Most requests are always enabled but WAIT and WAITANY
31  *  are not always enabled: a WAIT where the communication does not
32  *  have both a source and a destination yet is not enabled
33  *  (unless timeout is enabled in the wait and enabeld in SimGridMC).
34  */
35 XBT_INTERNAL int MC_request_is_enabled(smx_simcall_t req);
36 XBT_INTERNAL int MC_request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
37
38 /** Is the process ready to execute its simcall?
39  *
40  *  This is true if the request associated with the process is ready.
41  */
42 XBT_INTERNAL int MC_process_is_enabled(smx_process_t process);
43
44 XBT_INTERNAL char *MC_request_get_dot_output(smx_simcall_t req, int value);
45
46 SG_END_DECL()
47
48 #endif