Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
removing tracing functions from examples that are not in msg/tracing directory
[simgrid.git] / src / simdag / private.h
index 80b6b70..243a9e0 100644 (file)
@@ -36,6 +36,7 @@ typedef struct SD_global {
 
   /* task state sets */
   xbt_swag_t not_scheduled_task_set;
+  xbt_swag_t schedulable_task_set;
   xbt_swag_t scheduled_task_set;
   xbt_swag_t runnable_task_set;
   xbt_swag_t in_fifo_task_set;
@@ -88,6 +89,7 @@ typedef struct SD_task {
   xbt_dynar_t tasks_before;
   xbt_dynar_t tasks_after;
   unsigned int unsatisfied_dependencies;
+  unsigned int is_not_ready;
 
   /* scheduling parameters (only exist in state SD_SCHEDULED) */
   int workstation_nb;
@@ -129,19 +131,32 @@ static XBT_INLINE int __SD_task_is_scheduled_or_runnable(SD_task_t task)
     task->state_set == sd_global->runnable_task_set;
 }
 
+/* Returns whether the given task is scheduled or runnable. */
+static XBT_INLINE int __SD_task_is_schedulable_or_done(SD_task_t task)
+{
+  return task->state_set == sd_global->schedulable_task_set ||
+    task->state_set == sd_global->done_task_set;
+}
+
 /* Returns whether the state of the given task is SD_NOT_SCHEDULED. */
 static XBT_INLINE int __SD_task_is_not_scheduled(SD_task_t task)
 {
   return task->state_set == sd_global->not_scheduled_task_set;
 }
 
+/* Returns whether the state of the given task is SD_SCHEDULED. */
+static XBT_INLINE int __SD_task_is_schedulable(SD_task_t task)
+{
+  return task->state_set == sd_global->schedulable_task_set;
+}
+
 /* Returns whether the state of the given task is SD_SCHEDULED. */
 static XBT_INLINE int __SD_task_is_scheduled(SD_task_t task)
 {
   return task->state_set == sd_global->scheduled_task_set;
 }
 
-/* Returns whether the state of the given task is SD_READY. */
+/* Returns whether the state of the given task is SD_RUNNABLE. */
 static XBT_INLINE int __SD_task_is_runnable(SD_task_t task)
 {
   return task->state_set == sd_global->runnable_task_set;
@@ -153,7 +168,7 @@ static XBT_INLINE int __SD_task_is_in_fifo(SD_task_t task)
   return task->state_set == sd_global->in_fifo_task_set;
 }
 
-/* Returns whether the state of the given task is SD_READY or SD_IN_FIFO. */
+/* Returns whether the state of the given task is SD_RUNNABLE or SD_IN_FIFO. */
 static XBT_INLINE int __SD_task_is_runnable_or_in_fifo(SD_task_t task)
 {
   return task->state_set == sd_global->runnable_task_set ||