X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b17531686acca9a61c349274d9de9c0dc4c7e07a..da6a8948438ab0798f492ed7bf5dad2a515ca04e:/src/mc/mc_request.h diff --git a/src/mc/mc_request.h b/src/mc/mc_request.h index f7f8bcd68c..2672208d1c 100644 --- a/src/mc/mc_request.h +++ b/src/mc/mc_request.h @@ -1,5 +1,4 @@ -/* Copyright (c) 2007-2015. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,8 +6,6 @@ #ifndef SIMGRID_MC_REQUEST_H #define SIMGRID_MC_REQUEST_H -#include - #include "src/simix/smx_private.h" namespace simgrid { @@ -22,13 +19,7 @@ enum class RequestType { XBT_PRIVATE bool request_depend(smx_simcall_t req1, smx_simcall_t req2); -XBT_PRIVATE char* request_to_string(smx_simcall_t req, int value, simgrid::mc::RequestType type); - -/** Check if the given simcall is visible - * - * \return `TRUE` or `FALSE` - */ -XBT_PRIVATE bool request_is_visible(smx_simcall_t req); +XBT_PRIVATE std::string request_to_string(smx_simcall_t req, int value, simgrid::mc::RequestType type); XBT_PRIVATE bool request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx); @@ -36,9 +27,9 @@ XBT_PRIVATE bool request_is_enabled_by_idx(smx_simcall_t req, unsigned int idx); * * This is true if the request associated with the process is ready. */ -XBT_PRIVATE bool process_is_enabled(smx_process_t process); +XBT_PRIVATE bool actor_is_enabled(smx_actor_t process); -XBT_PRIVATE char *request_get_dot_output(smx_simcall_t req, int value); +XBT_PRIVATE std::string request_get_dot_output(smx_simcall_t req, int value); } }