Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
This commit partially reverts commit 4e0c8570051df3f7114e0097bf888a99946b6138.
[simgrid.git] / src / simix / smx_process.c
index e830985..7ea92f3 100644 (file)
@@ -380,11 +380,6 @@ void SIMIX_process_resume(smx_process_t process, smx_process_t issuer)
 {
   xbt_assert((process != NULL), "Invalid parameters");
 
-  if (!process->suspended) {
-    XBT_DEBUG("Process '%s' is not suspended", process->name);
-    return;
-  }
-
   process->suspended = 0;
 
   /* If we are resuming another process, resume the action it was waiting for
@@ -662,3 +657,13 @@ smx_process_t SIMIX_process_from_PID(int PID)
        }
        return NULL;
 }
+
+/** @brief returns a dynar containg all currently existing processes */
+xbt_dynar_t SIMIX_processes_as_dynar(void) {
+  smx_process_t proc;
+  xbt_dynar_t res = xbt_dynar_new(sizeof(smx_process_t),NULL);
+  xbt_swag_foreach(proc, simix_global->process_list) {
+    xbt_dynar_push(res,&proc);
+  }
+  return res;
+}