X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/138e6f86566611611b1115c957cae0a1c6a85a4b..905e26b959375a249abcfdf1599f6178fe031f44:/src/msg/msg_private.h diff --git a/src/msg/msg_private.h b/src/msg/msg_private.h index 1bca3acded..82ee1b0684 100644 --- a/src/msg/msg_private.h +++ b/src/msg/msg_private.h @@ -21,8 +21,8 @@ #include "xbt/config.h" #include "src/instr/instr_private.h" -#include "src/simix/SynchroExec.hpp" -#include "src/simix/SynchroComm.hpp" +#include "src/kernel/activity/SynchroExec.hpp" +#include "src/kernel/activity/SynchroComm.hpp" SG_BEGIN_DECL() @@ -47,8 +47,8 @@ typedef struct simdata_task { this->isused = false; } - simgrid::simix::Exec *compute = nullptr; /* SIMIX modeling of computation */ - simgrid::simix::Comm *comm = nullptr; /* SIMIX modeling of communication */ + simgrid::kernel::activity::Exec *compute = nullptr; /* SIMIX modeling of computation */ + simgrid::kernel::activity::Comm *comm = nullptr; /* SIMIX modeling of communication */ double bytes_amount = 0.0; /* Data size */ double flops_amount = 0.0; /* Computation size */ msg_process_t sender = nullptr; @@ -136,9 +136,6 @@ typedef struct MSG_Global { XBT_PUBLIC_DATA(MSG_Global_t) msg_global; /*************************************************************/ -// FIXME: KILLME -# define MSG_RETURN(val) return(val) - XBT_PRIVATE msg_host_t __MSG_host_create(sg_host_t host); XBT_PRIVATE msg_storage_t __MSG_storage_create(smx_storage_t storage); XBT_PRIVATE void __MSG_host_priv_free(msg_host_priv_t priv);