X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/2f810149832a2d855c33d0df5b02d736c2081e41..65820b2b3a3ce25fb8df2321530644a22eaf9e76:/src/msg/msg_environment.c diff --git a/src/msg/msg_environment.c b/src/msg/msg_environment.c index 93f479f88d..6b1da36f98 100644 --- a/src/msg/msg_environment.c +++ b/src/msg/msg_environment.c @@ -36,12 +36,12 @@ m_host_t MSG_get_host_by_name(const char *name) { smx_host_t simix_h = NULL; - simix_h = SIMIX_req_host_get_by_name(name); + simix_h = simcall_host_get_by_name(name); if (simix_h == NULL) return NULL; - return (m_host_t) SIMIX_req_host_get_data(simix_h); + return (m_host_t) simcall_host_get_data(simix_h); } /** \ingroup msg_easier_life