Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Nobody cares about this argument since maybe 4 years (when we managed to parse the...
[simgrid.git] / src / bindings / lua / simgrid_lua.c
index 09dd183..0859188 100644 (file)
@@ -616,7 +616,7 @@ static int msg_register_platform(lua_State * L)
   /* Tell Simgrid we dont wanna use its parser */
   surf_parse = console_parse_platform;
   surf_parse_reset_callbacks();
   /* Tell Simgrid we dont wanna use its parser */
   surf_parse = console_parse_platform;
   surf_parse_reset_callbacks();
-  surf_config_models_setup(NULL);
+  surf_config_models_setup();
   MSG_create_environment(NULL);
   return 0;
 }
   MSG_create_environment(NULL);
   return 0;
 }
@@ -629,7 +629,7 @@ static int sd_register_platform(lua_State * L)
 {
   surf_parse = console_parse_platform_wsL07;
   surf_parse_reset_callbacks();
 {
   surf_parse = console_parse_platform_wsL07;
   surf_parse_reset_callbacks();
-  surf_config_models_setup(NULL);
+  surf_config_models_setup();
   SD_create_environment(NULL);
   return 0;
 }
   SD_create_environment(NULL);
   return 0;
 }
@@ -642,7 +642,7 @@ static int gras_register_platform(lua_State * L)
   /* Tell Simgrid we dont wanna use surf parser */
   surf_parse = console_parse_platform;
   surf_parse_reset_callbacks();
   /* Tell Simgrid we dont wanna use surf parser */
   surf_parse = console_parse_platform;
   surf_parse_reset_callbacks();
-  surf_config_models_setup(NULL);
+  surf_config_models_setup();
   gras_create_environment(NULL);
   return 0;
 }
   gras_create_environment(NULL);
   return 0;
 }