X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/83b6eb642c9777ecc8f947d1a645cbec1874173b..8cc10e99f53995bc7486e4467b4e6ad8d7be3460:/src/surf/workstation.c diff --git a/src/surf/workstation.c b/src/surf/workstation.c index f54ec0c0b9..0a8c3221ae 100644 --- a/src/surf/workstation.c +++ b/src/surf/workstation.c @@ -355,9 +355,8 @@ void surf_workstation_model_init_CLM03(void) surf_workstation_model_init_internal(); surf_cpu_model_init_Cas01_im(); surf_network_model_init_LegrandVelho(); - update_model_description(surf_workstation_model_description, - "CLM03", surf_workstation_model); xbt_dynar_push(model_list, &surf_workstation_model); + sg_platf_postparse_add_cb(create_workstations); } void surf_workstation_model_init_compound() @@ -366,9 +365,6 @@ void surf_workstation_model_init_compound() xbt_assert(surf_cpu_model, "No CPU model defined yet!"); xbt_assert(surf_network_model, "No network model defined yet!"); surf_workstation_model_init_internal(); - - update_model_description(surf_workstation_model_description, - "compound", surf_workstation_model); - xbt_dynar_push(model_list, &surf_workstation_model); + sg_platf_postparse_add_cb(create_workstations); }