X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/04cb6e6a844ba34246d7ba001452f8aeaed9a6f9..70388188c97f56fbe2b645c9b00dcb05d0b86509:/src/surf/cpu_ti.c diff --git a/src/surf/cpu_ti.c b/src/surf/cpu_ti.c index b18b735c25..fe6e4f446e 100644 --- a/src/surf/cpu_ti.c +++ b/src/surf/cpu_ti.c @@ -190,15 +190,15 @@ static void* cpu_ti_create_resource(const char *name, double power_peak, } -static void parse_cpu_ti_init(void) +static void parse_cpu_ti_init(surf_parsing_host_arg_t host) { - cpu_ti_create_resource(struct_host->V_host_id, - struct_host->V_host_power_peak, - struct_host->V_host_power_scale, - struct_host->V_host_power_trace, - struct_host->V_host_core, - struct_host->V_host_state_initial, - struct_host->V_host_state_trace, + cpu_ti_create_resource(host->V_host_id, + host->V_host_power_peak, + host->V_host_power_scale, + host->V_host_power_trace, + host->V_host_core, + host->V_host_state_initial, + host->V_host_state_trace, current_property_set); current_property_set = NULL; @@ -263,7 +263,7 @@ static void add_traces_cpu_ti(void) static void cpu_ti_define_callbacks() { - surfxml_add_callback(ETag_surfxml_host_cb_list, parse_cpu_ti_init); + surf_parse_host_add_cb(parse_cpu_ti_init); surfxml_add_callback(ETag_surfxml_platform_cb_list, &add_traces_cpu_ti); }