X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b830103bb89748d30c84ff7a0e88ca821d2d78b7..0546bca18b0a87c91e5132340a0b1359ba0b5130:/src/simix/popping_private.hpp diff --git a/src/simix/popping_private.hpp b/src/simix/popping_private.hpp index be180ac81b..fdd0b56b37 100644 --- a/src/simix/popping_private.hpp +++ b/src/simix/popping_private.hpp @@ -12,10 +12,10 @@ #include /********************************* Simcalls *********************************/ -XBT_PUBLIC_DATA const char* simcall_names[]; /* Name of each simcall */ - #include "popping_enum.h" /* Definition of e_smx_simcall_t, with one value per simcall */ +XBT_PUBLIC_DATA const char* simcall_names[]; /* Name of each simcall */ + typedef int (*simix_match_func_t)(void*, void*, simgrid::kernel::activity::CommImpl*); typedef void (*simix_copy_data_func_t)(simgrid::kernel::activity::CommImpl*, void*, size_t); typedef void (*simix_clean_func_t)(void*); @@ -43,21 +43,20 @@ union u_smx_scalar { * @brief Represents a simcall to the kernel. */ struct s_smx_simcall { - e_smx_simcall_t call; - smx_actor_t issuer; - smx_timer_t timer; - int mc_value; - u_smx_scalar args[11]; - u_smx_scalar result; + e_smx_simcall_t call_; + smx_actor_t issuer_; + smx_timer_t timeout_cb_; // Callback to timeouts + simgrid::mc::SimcallInspector* inspector_; // makes that simcall observable by the MC + int mc_value_; + u_smx_scalar args_[11]; + u_smx_scalar result_; }; -#define SIMCALL_SET_MC_VALUE(simcall, value) ((simcall)->mc_value = (value)) -#define SIMCALL_GET_MC_VALUE(simcall) ((simcall)->mc_value) +#define SIMCALL_SET_MC_VALUE(simcall, value) ((simcall).mc_value_ = (value)) +#define SIMCALL_GET_MC_VALUE(simcall) ((simcall).mc_value_) /******************************** General *************************************/ -XBT_PRIVATE void SIMIX_simcall_answer(smx_simcall_t simcall); -XBT_PRIVATE void SIMIX_simcall_handle(smx_simcall_t simcall, int value); XBT_PRIVATE const char* SIMIX_simcall_name(e_smx_simcall_t kind); XBT_PRIVATE void SIMIX_run_kernel(std::function const* code); XBT_PRIVATE void SIMIX_run_blocking(std::function const* code); @@ -178,29 +177,29 @@ template inline typename std::remove_reference::type unmarshal_raw( return unmarshal(type(), simcall); } -template inline void marshalArgs(smx_simcall_t simcall) +template inline void marshal_args(smx_simcall_t simcall) { /* Nothing to do when no args */ } -template inline void marshalArgs(smx_simcall_t simcall, A const& a) +template inline void marshal_args(smx_simcall_t simcall, A const& a) { - marshal(simcall->args[I], a); + marshal(simcall->args_[I], a); } -template inline void marshalArgs(smx_simcall_t simcall, A const& a, B const&... b) +template inline void marshal_args(smx_simcall_t simcall, A const& a, B const&... b) { - marshal(simcall->args[I], a); - marshalArgs(simcall, b...); + marshal(simcall->args_[I], a); + marshal_args(simcall, b...); } /** Initialize the simcall */ template inline void marshal(smx_simcall_t simcall, e_smx_simcall_t call, A const&... a) { - simcall->call = call; - memset(&simcall->result, 0, sizeof(simcall->result)); - memset(simcall->args, 0, sizeof(simcall->args)); - marshalArgs<0>(simcall, a...); + simcall->call_ = call; + memset(&simcall->result_, 0, sizeof(simcall->result_)); + memset(simcall->args_, 0, sizeof(simcall->args_)); + marshal_args<0>(simcall, a...); } } }