Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
verbose message about the type of context factory activated
[simgrid.git] / src / simix / smx_context_sysv.c
index 12408c3..eab0b57 100644 (file)
@@ -34,6 +34,7 @@ static void smx_ctx_sysv_wrapper(smx_ctx_sysv_t context);
 void SIMIX_ctx_sysv_factory_init(smx_context_factory_t *factory)
 {
   smx_ctx_base_factory_init(factory);
+  VERB0("Activating SYSV context factory");
 
   (*factory)->finalize = smx_ctx_sysv_factory_finalize;
   (*factory)->create_context = smx_ctx_sysv_create_context;
@@ -172,6 +173,7 @@ void smx_ctx_sysv_runall(xbt_dynar_t processes)
   unsigned int cursor;
 
   xbt_dynar_foreach(processes, cursor, process) {
+    DEBUG2("Schedule item %u of %lu",cursor,xbt_dynar_length(processes));
     smx_ctx_sysv_resume(process->context);
   }
   xbt_dynar_reset(processes);