X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6ef9101f720226484598c7b9e52971ffe2a6587e..da994ba1ded3e6d6fc8381444c0bab18a511a18d:/src/simdag/simdag_private.h diff --git a/src/simdag/simdag_private.h b/src/simdag/simdag_private.h index 7b81a5f175..d2345567e0 100644 --- a/src/simdag/simdag_private.h +++ b/src/simdag/simdag_private.h @@ -6,9 +6,7 @@ #ifndef SIMDAG_PRIVATE_H #define SIMDAG_PRIVATE_H - -#include "xbt/base.h" -#include "xbt/dict.h" +#include #include "xbt/dynar.h" #include "simgrid/simdag.h" #include "surf/surf.h" @@ -22,30 +20,18 @@ SG_BEGIN_DECL() typedef struct SD_global { xbt_mallocator_t task_mallocator; /* to not remalloc new tasks */ - int watch_point_reached; /* has a task just reached a watch point? */ + bool watch_point_reached; /* has a task just reached a watch point? */ - xbt_dynar_t initial_task_set; - xbt_dynar_t executable_task_set; - xbt_dynar_t completed_task_set; + std::set *initial_tasks; + std::set *executable_tasks; + std::set *completed_tasks; xbt_dynar_t return_set; - int task_number; } s_SD_global_t, *SD_global_t; extern XBT_PRIVATE SD_global_t sd_global; -/* Storage */ -typedef s_xbt_dictelm_t s_SD_storage_t; -typedef struct SD_storage { - void *data; /* user data */ - const char *host; -} s_SD_storage_priv_t, *SD_storage_priv_t; - -static inline SD_storage_priv_t SD_storage_priv(SD_storage_t storage){ - return (SD_storage_priv_t)xbt_lib_get_level(storage, SD_STORAGE_LEVEL); -} - /* Task */ typedef struct SD_task { e_SD_task_state_t state; @@ -99,18 +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; -} - -/********** Storage **********/ -XBT_PRIVATE SD_storage_t __SD_storage_create(void *surf_storage, void *data); -XBT_PRIVATE void __SD_storage_destroy(void *storage); - SG_END_DECL() - #endif