X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ca7838c3440b5dab4545fc2ebdfc52ff0717cf3a..a6dbc279b78e4a84b3921b509f3138ed01399bca:/include/simdag/datatypes.h diff --git a/include/simdag/datatypes.h b/include/simdag/datatypes.h deleted file mode 100644 index 8490f8b5f0..0000000000 --- a/include/simdag/datatypes.h +++ /dev/null @@ -1,22 +0,0 @@ -#ifndef SIMDAG_DATATYPES_H -#define SIMDAG_DATATYPES_H - -/* Link */ -typedef struct SD_link *SD_link_t; - -/* Workstation */ -typedef struct SD_workstation *SD_workstation_t; - -/* Task */ -typedef struct SD_task *SD_task_t; - -/* Task state */ -typedef enum { - SD_NOT_SCHEDULED = 0, /* 0 because SD_NOT_SCHEDULED is not a valid state for SD_watch and SD_unwatch */ - SD_SCHEDULED = 0x0001, - SD_RUNNING = 0x0002, - SD_DONE = 0x0004, - SD_FAILED = 0x0008 -} e_SD_task_state_t; - -#endif