X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/cf108868b4eeed4d0d9d343bc68557d7814e18c0..bace8e5a6ff160e200f799250796c5303dc487ba:/include/simgrid/simdag.h diff --git a/include/simgrid/simdag.h b/include/simgrid/simdag.h index 15480fdd85..2546414690 100644 --- a/include/simgrid/simdag.h +++ b/include/simgrid/simdag.h @@ -10,8 +10,10 @@ #include "xbt/misc.h" #include "xbt/dynar.h" #include "xbt/dict.h" - +#include "xbt/asserts.h" +#include "xbt/log.h" #include "simgrid/link.h" +#include "simgrid/host.h" SG_BEGIN_DECL() @@ -61,7 +63,6 @@ typedef enum { SD_TASK_COMM_PAR_MXN_1D_BLOCK = 4 /**< @brief MxN data redistribution (1D Block distribution) */ } e_SD_task_kind_t; - /** @brief Storage datatype @ingroup SD_datatypes_management @@ -69,7 +70,6 @@ typedef enum { typedef xbt_dictelm_t SD_storage_t; /************************** Workstation handling ****************************/ - /** @defgroup sg_host_management Hosts * @brief Functions for managing the Hosts * @@ -93,7 +93,6 @@ XBT_PUBLIC(const char*) SD_storage_get_host(SD_storage_t storage); /** @} */ /************************** Task handling ************************************/ - /** @defgroup SD_task_management Tasks * @brief Functions for managing the tasks * @@ -156,7 +155,6 @@ XBT_PUBLIC(void) SD_task_schedulel(SD_task_t task, int count, ...); /** @} */ - /** @defgroup SD_task_dependency_management Tasks dependencies * @brief Functions for managing the task dependencies * @@ -173,7 +171,6 @@ XBT_PUBLIC(int) SD_task_dependency_exists(SD_task_t src, SD_task_t dst); /** @} */ /************************** Global *******************************************/ - /** @defgroup SD_simulation Simulation * @brief Functions for creating the environment and launching the simulation * @@ -227,7 +224,4 @@ XBT_PUBLIC(xbt_dynar_t) SD_PTG_dotload(const char *filename); //TRACE_sd_set_task_category SG_END_DECL() - -#include "simgrid/instr.h" - #endif