X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c90cc240c7dbfd5d20deff83f6a45914bc253474..22f023da731d4d4e39426ca028733bd8abbf8c90:/src/simdag/simdag_private.h diff --git a/src/simdag/simdag_private.h b/src/simdag/simdag_private.h index 193e278536..bd796b9c6f 100644 --- a/src/simdag/simdag_private.h +++ b/src/simdag/simdag_private.h @@ -70,7 +70,7 @@ typedef struct SD_task { e_SD_task_state_t state; void *data; /* user data */ char *name; - int kind; + e_SD_task_kind_t kind; double amount; double alpha; /* used by typed parallel tasks */ double remains; @@ -110,7 +110,9 @@ typedef struct SD_dependency { } s_SD_dependency_t, *SD_dependency_t; /* SimDag private functions */ -XBT_PUBLIC(xbt_swag_t) SD_simulate_swag(double how_long); /* could be public, but you need to see the internals of the SD_task_t to use it */ + +/* could be public, but you need to see the SD_task_t internals to use it */ +XBT_PRIVATE xbt_swag_t SD_simulate_swag(double how_long); XBT_PRIVATE SD_workstation_t __SD_workstation_create(const char* name);