X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f9436b840852218b39dce22d6057b6f223168daa..19cd5a52131b50275fa26e0e53c4a8bd333f2937:/src/surf/instr_surf.cpp diff --git a/src/surf/instr_surf.cpp b/src/surf/instr_surf.cpp index df986ab2ad..83f7e1e227 100644 --- a/src/surf/instr_surf.cpp +++ b/src/surf/instr_surf.cpp @@ -9,22 +9,12 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf"); -void TRACE_surf_alloc() -{ - TRACE_surf_resource_utilization_alloc(); -} - -void TRACE_surf_release() -{ - TRACE_surf_resource_utilization_release(); -} - 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); - type_t type = PJ_type_get ("power", container->type); - new SetVariableEvent(date, container, type, speed); + simgrid::instr::Type* type = container->type_->getChild("power"); + new simgrid::instr::SetVariableEvent(date, container, type, speed); } } @@ -32,8 +22,8 @@ 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); - type_t type = PJ_type_get ("bandwidth", container->type); - new SetVariableEvent(date, container, type, bandwidth); + simgrid::instr::Type* type = container->type_->getChild("bandwidth"); + new simgrid::instr::SetVariableEvent(date, container, type, bandwidth); } }