X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/5b867af718c91a3279c07e08ab9bcf164ff64466..84733adf13f6e36f5861ddd1953e4df97ef2be78:/src/instr/instr_interface.cpp diff --git a/src/instr/instr_interface.cpp b/src/instr/instr_interface.cpp index b1ff48d7d3..6a1cf3eb5f 100644 --- a/src/instr/instr_interface.cpp +++ b/src/instr/instr_interface.cpp @@ -297,18 +297,18 @@ static void instr_user_variable(double time, const char* resource, const char* v static void instr_user_srcdst_variable(double time, const char *src, const char *dst, const char *variable, const char *father_type, double value, InstrUserVariable what) { - sg_netpoint_t src_elm = sg_netpoint_by_name_or_null(src); + simgrid::kernel::routing::NetPoint* src_elm = sg_netpoint_by_name_or_null(src); if (not src_elm) xbt_die("Element '%s' not found!",src); - sg_netpoint_t dst_elm = sg_netpoint_by_name_or_null(dst); + simgrid::kernel::routing::NetPoint* dst_elm = sg_netpoint_by_name_or_null(dst); if (not dst_elm) xbt_die("Element '%s' not found!",dst); - std::vector route; - simgrid::kernel::routing::NetZoneImpl::getGlobalRoute(src_elm, dst_elm, route, nullptr); + std::vector route; + simgrid::kernel::routing::NetZoneImpl::get_global_route(src_elm, dst_elm, route, nullptr); for (auto const& link : route) - instr_user_variable(time, link->getCname(), variable, father_type, value, what, nullptr, &user_link_variables); + instr_user_variable(time, link->get_cname(), variable, father_type, value, what, nullptr, &user_link_variables); } /** \ingroup TRACE_API @@ -948,8 +948,8 @@ void TRACE_host_set_state(const char* host, const char* state_name, const char* * Change a user state previously declared by pushing the new value to the state. * * \param host The name of the host to be considered. - * \param state The name of the state previously declared. - * \param value The value to be pushed. + * \param state_name The name of the state previously declared. + * \param value_name The value to be pushed. * * \see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_pop_state, TRACE_host_reset_state */ @@ -964,7 +964,7 @@ void TRACE_host_push_state(const char* host, const char* state_name, const char* * Change a user state previously declared by removing the last value of the state. * * \param host The name of the host to be considered. - * \param state The name of the state to be popped. + * \param state_name The name of the state to be popped. * * \see TRACE_host_state_declare, TRACE_host_set_state, TRACE_host_push_state, TRACE_host_reset_state */