X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4bf8a2ad076530e531857dca1682f53f7ab94078..5f1dc33c9f76ee99973ba93f034f031451398ebe:/src/surf/instr_surf.cpp?ds=sidebyside diff --git a/src/surf/instr_surf.cpp b/src/surf/instr_surf.cpp index d82ef1b992..83f7e1e227 100644 --- a/src/surf/instr_surf.cpp +++ b/src/surf/instr_surf.cpp @@ -13,7 +13,7 @@ void TRACE_surf_host_set_speed(double date, const char *resource, double speed) { if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) { container_t container = PJ_container_get(resource); - simgrid::instr::Type* type = PJ_type_get("power", container->type_); + simgrid::instr::Type* type = container->type_->getChild("power"); new simgrid::instr::SetVariableEvent(date, container, type, speed); } } @@ -22,7 +22,7 @@ void TRACE_surf_link_set_bandwidth(double date, const char *resource, double ban { if (TRACE_categorized() || TRACE_uncategorized() || TRACE_platform()) { container_t container = PJ_container_get(resource); - simgrid::instr::Type* type = PJ_type_get("bandwidth", container->type_); + simgrid::instr::Type* type = container->type_->getChild("bandwidth"); new simgrid::instr::SetVariableEvent(date, container, type, bandwidth); } }