X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/1aeee3ce2981cd8db039d6be8f5b86e88eabb704..a5945452ef5b1114fd7c2fab0e865d776775c34d:/src/simdag/simdag_private.h?ds=sidebyside diff --git a/src/simdag/simdag_private.h b/src/simdag/simdag_private.h index 4a1bdff10b..b6915825de 100644 --- a/src/simdag/simdag_private.h +++ b/src/simdag/simdag_private.h @@ -7,8 +7,6 @@ #ifndef SIMDAG_PRIVATE_H #define SIMDAG_PRIVATE_H -#include "xbt/base.h" -#include "xbt/dict.h" #include "xbt/dynar.h" #include "simgrid/simdag.h" #include "surf/surf.h" @@ -29,7 +27,6 @@ typedef struct SD_global { xbt_dynar_t completed_task_set; xbt_dynar_t return_set; - int task_number; } s_SD_global_t, *SD_global_t; @@ -88,14 +85,5 @@ XBT_PRIVATE void* SD_task_new_f(void); XBT_PRIVATE void SD_task_recycle_f(void *t); XBT_PRIVATE void SD_task_free_f(void *t); -/* Functions to test if the task is in a given state. */ - -/* Returns whether the given task is scheduled or runnable. */ -static XBT_INLINE int __SD_task_is_scheduled_or_runnable(SD_task_t task) -{ - return task->state == SD_SCHEDULED || task->state == SD_RUNNABLE; -} - SG_END_DECL() - #endif