X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca83a7925a912ffd5cd5cbfee5dfa189aebafee4..8a28a7366da96137a0daadb54842c5bf87c6f2ee:/src/surf/instr_surf.cpp diff --git a/src/surf/instr_surf.cpp b/src/surf/instr_surf.cpp index a21da8abe2..d1e986c8ca 100644 --- a/src/surf/instr_surf.cpp +++ b/src/surf/instr_surf.cpp @@ -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); + 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); + SetVariableEvent(date, container, type, bandwidth); } }