Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
be more friendly in tests with VPATH builds
[simgrid.git] / src / simix / smx_process.c
index 728cb37..0c3caf8 100644 (file)
@@ -54,8 +54,8 @@ void __SIMIX_create_maestro_process()
   /* Process data */
   process->name = (char *)"";
 
-  /* Create the right context type */
-  process->context = SIMIX_context_create_maestro();
+  /* Create a dummy context for maestro */
+  process->context = SIMIX_context_new(NULL, 0, NULL, NULL, NULL);
 
   /* Set it as the maestro process */
   simix_global->maestro_process = process;