Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Python: Add Comm.wait_any
[simgrid.git] / src / mc / mc_request.hpp
1 /* Copyright (c) 2007-2019. 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_REQUEST_HPP
7 #define SIMGRID_MC_REQUEST_HPP
8
9 #include "src/simix/smx_private.hpp"
10
11 namespace simgrid {
12 namespace mc {
13
14 enum class RequestType {
15   simix,
16   executed,
17   internal,
18 };
19
20 XBT_PRIVATE bool request_depend(smx_simcall_t req1, smx_simcall_t req2);
21
22 XBT_PRIVATE std::string request_to_string(smx_simcall_t req, int value, simgrid::mc::RequestType type);
23
24 XBT_PRIVATE bool request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx);
25
26 XBT_PRIVATE std::string request_get_dot_output(smx_simcall_t req, int value);
27 }
28 }
29
30 #endif