X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/347996b4a10c4e8579080692afa60e0afb88b60a..ba6bc17b0511b1a942eca759ecc46f182989387d:/src/surf/instr_surf.cpp?ds=sidebyside diff --git a/src/surf/instr_surf.cpp b/src/surf/instr_surf.cpp index 230805a286..801036a4c7 100644 --- a/src/surf/instr_surf.cpp +++ b/src/surf/instr_surf.cpp @@ -9,12 +9,12 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(instr_surf, instr, "Tracing Surf"); -void TRACE_surf_alloc(void) +void TRACE_surf_alloc() { TRACE_surf_resource_utilization_alloc(); } -void TRACE_surf_release(void) +void TRACE_surf_release() { TRACE_surf_resource_utilization_release(); } @@ -24,7 +24,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); type_t type = PJ_type_get ("power", container->type); - new_pajeSetVariable(date, container, type, speed); + new SetVariableEvent(date, container, type, speed); } } @@ -33,7 +33,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); type_t type = PJ_type_get ("bandwidth", container->type); - new_pajeSetVariable(date, container, type, bandwidth); + new SetVariableEvent(date, container, type, bandwidth); } }