From: cristianrosa Date: Tue, 7 Sep 2010 06:48:39 +0000 (+0000) Subject: Do not call xbt_cfg_set_int on the model-check option, it won't set it's value to... X-Git-Tag: v3_5~651 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/fb93ded98f9fd09dab3dce296daa2aa9f4a39033?hp=4c48bd895304f134d21a2f3a4eeb999a316463c6 Do not call xbt_cfg_set_int on the model-check option, it won't set it's value to the default one. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@8173 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/surf/surf_config.c b/src/surf/surf_config.c index aa93aaeee6..dab8332b20 100644 --- a/src/surf/surf_config.c +++ b/src/surf/surf_config.c @@ -264,7 +264,11 @@ void surf_config_init(int *argc, char **argv) xbt_cfg_register(&_surf_cfg_set, "model-check", "Activate the model-checking of the \"simulated\" system (EXPERIMENTAL -- msg only for now)", xbt_cfgelm_int, &default_value_int, 0, 1, _surf_cfg_cb_model_check, NULL); - xbt_cfg_set_int(_surf_cfg_set, "model-check", default_value_int); + /* + FIXME: this function is not setting model-check to it's default value because + internally it calls to variable->cb_set that in this case is the function + _surf_cfg_cb_model_check which sets it's value to 1 (instead of the defalut value 0) + xbt_cfg_set_int(_surf_cfg_set, "model-check", default_value_int); */ default_value_int = 0; xbt_cfg_register(&_surf_cfg_set, "fullduplex",