Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
do not store the requests on the process's stack nor in the big vector
[simgrid.git] / src / simix / smx_environment.c
index dd51dd0..20ce044 100644 (file)
@@ -42,12 +42,17 @@ void SIMIX_create_environment(const char *file)
   parse_platform_file(file);
   surf_config_models_create_elms();
   start = xbt_os_time();
-
+  /* FIXME: what time are we measuring ??? */
   end = xbt_os_time();
   DEBUG1("PARSE TIME: %lg", (end - start));
 
+#ifdef HAVE_TRACING
+  TRACE_surf_save_onelink();
+#endif
+
   xbt_dict_foreach(surf_model_resource_set(surf_workstation_model), cursor,
                    name, workstation) {
-    __SIMIX_host_create(name, workstation, NULL);
+    SIMIX_host_create(name, workstation, NULL);
   }
+  surf_presolve();
 }