X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/340cf8df326e4bbb67c046172f8a73eecc6a3583..1398fa7c21c0d81f808108e0803d875c6fce9b8e:/src/mc/mc_smx.h diff --git a/src/mc/mc_smx.h b/src/mc/mc_smx.h index 6db9ae4a82..e2371e4c63 100644 --- a/src/mc/mc_smx.h +++ b/src/mc/mc_smx.h @@ -10,8 +10,6 @@ #include #include -#include -#include #include #include @@ -43,12 +41,6 @@ SG_BEGIN_DECL() -typedef struct s_mc_smx_process_info s_mc_smx_process_info_t, *mc_smx_process_info_t; - -XBT_PRIVATE xbt_dynar_t MC_smx_process_info_list_new(void); - -XBT_PRIVATE void MC_process_smx_refresh(simgrid::mc::Process* process); - /** Get the issuer of a simcall (`req->issuer`) * * In split-process mode, it does the black magic necessary to get an address @@ -58,7 +50,7 @@ XBT_PRIVATE void MC_process_smx_refresh(simgrid::mc::Process* process); * @param process the MCed process * @param req the simcall (copied in the local process) */ -XBT_PRIVATE smx_process_t MC_smx_simcall_get_issuer(smx_simcall_t req); +XBT_PRIVATE smx_process_t MC_smx_simcall_get_issuer(s_smx_simcall_t const* req); XBT_PRIVATE const char* MC_smx_process_get_name(smx_process_t p); XBT_PRIVATE const char* MC_smx_process_get_host_name(smx_process_t p); @@ -72,7 +64,7 @@ XBT_PRIVATE int MC_smpi_process_count(void); XBT_PRIVATE smx_process_t MC_smx_resolve_process(smx_process_t process_remote_address); /** Get the process info structure from the process remote address */ -XBT_PRIVATE mc_smx_process_info_t MC_smx_resolve_process_info(smx_process_t process_remote_address); +XBT_PRIVATE simgrid::mc::SimixProcessInformation* MC_smx_resolve_process_info(smx_process_t process_remote_address); XBT_PRIVATE unsigned long MC_smx_get_maxpid(void);