X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9b3780913f771e32ac6686a7f97b1a8248f11b27..9fd6cbc6c3b06f4b09e3c3339ffb3cc8a68f9bfa:/include/simgrid/simdag.h diff --git a/include/simgrid/simdag.h b/include/simgrid/simdag.h index 48fbd18e47..ebf6810bac 100644 --- a/include/simgrid/simdag.h +++ b/include/simgrid/simdag.h @@ -15,13 +15,6 @@ #include #endif -#ifndef MIN -#define MIN(a, b) ((a) < (b) ? (a) : (b)) -#endif -#ifndef MAX -#define MAX(a, b) ((a) > (b) ? (a) : (b)) -#endif - SG_BEGIN_DECL() /** @brief Link opaque datatype @@ -37,7 +30,7 @@ typedef sg_link_t SD_link_t; A task is some computing amount that can be executed in parallel on several hosts. A task may depend on other tasks, which means that the task cannot start until the other tasks are done. - Each task has a \ref e_SD_task_state_t "state" indicating whether the task is scheduled, running, done, ... + Each task has a @ref e_SD_task_state_t "state" indicating whether the task is scheduled, running, done, ... */ typedef struct s_SD_task_t* SD_task_t; @@ -73,7 +66,7 @@ typedef enum { * * A task is some working amount that can be executed in parallel on several hosts. * A task may depend on other tasks, which means that the task cannot start until the other tasks are done. - * Each task has a \ref e_SD_task_state_t "state" indicating whether the task is scheduled, running, done, ... + * Each task has a @ref e_SD_task_state_t "state" indicating whether the task is scheduled, running, done, ... * * @see SD_task_t, @see SD_task_dependency_api * @{