X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f783ed4680c6862a1b7543237e89d1221334bae0..59ee07d949014eace7f574354a69fbba0fd2be4e:/src/simdag/private.h diff --git a/src/simdag/private.h b/src/simdag/private.h index 6939ecae93..88bb0a92d3 100644 --- a/src/simdag/private.h +++ b/src/simdag/private.h @@ -14,6 +14,7 @@ #include "simdag/datatypes.h" #include "surf/surf.h" #include "xbt/swag.h" +#include "xbt/mallocator.h" #include #define SD_INITIALISED() (sd_global != NULL) @@ -29,6 +30,8 @@ typedef struct SD_global { SD_link_t *recyclable_route; /* array returned by SD_route_get_list and mallocated only once */ + xbt_mallocator_t task_mallocator; /* to not remalloc new tasks */ + int watch_point_reached; /* has a task just reached a watch point? */ /* task state sets */ @@ -130,6 +133,11 @@ int __SD_task_try_to_run(SD_task_t task); void __SD_task_just_done(SD_task_t task); bool acyclic_graph_detail(xbt_dynar_t dag); +/* Task mallocator functions */ +void* SD_task_new_f(void); +void SD_task_recycle_f(void *t); +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. */