From: Martin Quinson Date: Fri, 18 Nov 2011 16:02:39 +0000 (+0100) Subject: get workstation model to pick the right network model, the one given as default one... X-Git-Tag: exp_20120216~244 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/dc3c940eca274de07feb008daf67e39d3d38bad2 get workstation model to pick the right network model, the one given as default one (done the crude way, and LV08 actually breaks some stuff) --- diff --git a/src/surf/workstation.c b/src/surf/workstation.c index 0a8c3221ae..e9c0cc6997 100644 --- a/src/surf/workstation.c +++ b/src/surf/workstation.c @@ -354,7 +354,10 @@ void surf_workstation_model_init_CLM03(void) { surf_workstation_model_init_internal(); surf_cpu_model_init_Cas01_im(); - surf_network_model_init_LegrandVelho(); + im_surf_network_model_init_LegrandVelho(); + // FIXME: prefer the proper interface instead of bypassing the cfg module that way + //xbt_cfg_set_parse(_surf_cfg_set, "network/model:LV08"); + //xbt_cfg_set_parse(_surf_cfg_set, "cpu/model:Cas01"); xbt_dynar_push(model_list, &surf_workstation_model); sg_platf_postparse_add_cb(create_workstations); }