X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2d2995483b57463581ffdc4365fe1999ddc306c2..1c75860aa49dbde3f251678a7d00a2e27660efa8:/src/simix/popping_private.hpp diff --git a/src/simix/popping_private.hpp b/src/simix/popping_private.hpp index 7e6675b566..83f7e2d84b 100644 --- a/src/simix/popping_private.hpp +++ b/src/simix/popping_private.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2019. 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. */ @@ -12,17 +12,18 @@ #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)(smx_activity_t, void*, size_t); +typedef void (*simix_copy_data_func_t)(simgrid::kernel::activity::CommImpl*, void*, size_t); typedef void (*simix_clean_func_t)(void*); typedef void (*FPtr)(void); // Hide the ugliness /* Pack all possible scalar types in an union */ union u_smx_scalar { + bool b; char c; short s; int i; @@ -39,25 +40,22 @@ union u_smx_scalar { }; /** - * \brief Represents a simcall to the kernel. + * @brief Represents a simcall to the kernel. */ struct s_smx_simcall { e_smx_simcall_t call; smx_actor_t issuer; - smx_timer_t timer; + smx_timer_t timeout_cb; // Callback to timeouts 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 void SIMIX_simcall_exit(smx_activity_t synchro); 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); @@ -94,6 +92,7 @@ template struct marshal_t { inline T unmarshal_raw(type, u_smx_scalar const& simcall) \ { /* Exactly same as unmarshal. It differs only for intrusive_ptr */ return simcall.field; } +SIMIX_MARSHAL(bool, b); SIMIX_MARSHAL(char, c); SIMIX_MARSHAL(short, s); SIMIX_MARSHAL(int, i); @@ -177,20 +176,20 @@ 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); } -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_args(simcall, b...); } /** Initialize the simcall */ @@ -199,7 +198,7 @@ template inline void marshal(smx_simcall_t simcall, e_smx_simcall_t simcall->call = call; memset(&simcall->result, 0, sizeof(simcall->result)); memset(simcall->args, 0, sizeof(simcall->args)); - marshalArgs<0>(simcall, a...); + marshal_args<0>(simcall, a...); } } }