X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3ffba8ac7a4b5cb19a9feed264a11422ee0f202f..f226063bd973b7eac5051d63fe92a0353af7bfcc:/src/include/surf/surf.h diff --git a/src/include/surf/surf.h b/src/include/surf/surf.h index 824bdcece8..267a97a3c2 100644 --- a/src/include/surf/surf.h +++ b/src/include/surf/surf.h @@ -11,6 +11,12 @@ #include "xbt/swag.h" #include "xbt/dynar.h" #include "xbt/dict.h" +#include "xbt/misc.h" +#include "gras_config.h" + +SG_BEGIN_DECL() + + /* Actions and resources are higly connected structures... */ @@ -163,12 +169,12 @@ typedef struct surf_timer_resource { /** \brief The timer resource * \ingroup SURF_resources */ -extern surf_timer_resource_t surf_timer_resource; +XBT_PUBLIC_DATA(surf_timer_resource_t) surf_timer_resource; /** \brief Initializes the timer resource * \ingroup SURF_resources */ -void surf_timer_resource_init(const char *filename); +XBT_PUBLIC(void) surf_timer_resource_init(const char *filename); /* Cpu resource */ @@ -206,7 +212,7 @@ typedef struct surf_cpu_resource { /** \brief The CPU resource * \ingroup SURF_resources */ -extern surf_cpu_resource_t surf_cpu_resource; +XBT_PUBLIC_DATA(surf_cpu_resource_t) surf_cpu_resource; /** \brief Initializes the CPU resource with the model Cas01 * \ingroup SURF_resources @@ -216,7 +222,7 @@ extern surf_cpu_resource_t surf_cpu_resource; * * \see surf_workstation_resource_init_CLM03() */ -void surf_cpu_resource_init_Cas01(const char *filename); +XBT_PUBLIC(void) surf_cpu_resource_init_Cas01(const char *filename); /* Network resource */ @@ -253,7 +259,7 @@ typedef struct surf_network_resource { * resource should be accessed because depending on the platform model, * the network resource can be NULL. */ -extern surf_network_resource_t surf_network_resource; +XBT_PUBLIC_DATA(surf_network_resource_t) surf_network_resource; /** \brief Initializes the platform with the network model CM02 * \ingroup SURF_resources @@ -264,7 +270,7 @@ extern surf_network_resource_t surf_network_resource; * * \see surf_workstation_resource_init_CLM03() */ -void surf_network_resource_init_CM02(const char *filename); +XBT_PUBLIC(void) surf_network_resource_init_CM02(const char *filename); /** \brief Workstation resource extension public * \ingroup SURF_resources @@ -313,7 +319,7 @@ typedef struct surf_workstation_resource { * because depending on the platform model, the network resource and the CPU resource * may not exist. */ -extern surf_workstation_resource_t surf_workstation_resource; +XBT_PUBLIC_DATA(surf_workstation_resource_t) surf_workstation_resource; /** \brief Initializes the platform with the workstation model CLM03 * \ingroup SURF_resources @@ -327,7 +333,7 @@ extern surf_workstation_resource_t surf_workstation_resource; * * \see surf_workstation_resource_init_KCCFLN05() */ -void surf_workstation_resource_init_CLM03(const char *filename); +XBT_PUBLIC(void) surf_workstation_resource_init_CLM03(const char *filename); /** \brief Initializes the platform with the model KCCFLN05 * \ingroup SURF_resources @@ -339,8 +345,15 @@ void surf_workstation_resource_init_CLM03(const char *filename); * * \see surf_workstation_resource_init_CLM03() */ -void surf_workstation_resource_init_KCCFLN05(const char *filename); -void surf_workstation_resource_init_KCCFLN05_proportionnal(const char *filename); + +XBT_PUBLIC(void) surf_workstation_resource_init_KCCFLN05(const char *filename); + + +XBT_PUBLIC(void) surf_workstation_resource_init_KCCFLN05_proportionnal(const char *filename); + +#ifdef USE_GTNETS +XBT_PUBLIC(void) surf_workstation_resource_init_GTNETS(const char *filename); +#endif /** \brief The network links * \ingroup SURF_resources @@ -349,7 +362,7 @@ void surf_workstation_resource_init_KCCFLN05_proportionnal(const char *filename) * * \see workstation_set */ -extern xbt_dict_t network_link_set; +XBT_PUBLIC_DATA(xbt_dict_t) network_link_set; /** \brief The workstations * \ingroup SURF_resources @@ -358,12 +371,12 @@ extern xbt_dict_t network_link_set; * * \see network_link_set */ -extern xbt_dict_t workstation_set; +XBT_PUBLIC_DATA(xbt_dict_t) workstation_set; /** \brief List of initialized resources * \ingroup SURF_resources */ -extern xbt_dynar_t resource_list; +XBT_PUBLIC_DATA(xbt_dynar_t) resource_list; /*******************************************/ /*** SURF Globals **************************/ @@ -381,7 +394,7 @@ extern xbt_dynar_t resource_list; * \see surf_timer_resource_init(), surf_workstation_resource_init_CLM03(), * surf_workstation_resource_init_KCCFLN05(), surf_exit() */ -void surf_init(int *argc, char **argv); /* initialize common structures */ +XBT_PUBLIC(void) surf_init(int *argc, char **argv); /* initialize common structures */ /** \brief Performs a part of the simulation * \ingroup SURF_simulation @@ -393,14 +406,14 @@ void surf_init(int *argc, char **argv); /* initialize common structures */ * are not executed immediately but only when you call surf_solve. * Note that the returned elapsed time can be zero. */ -double surf_solve(void); +XBT_PUBLIC(double) surf_solve(void); /** \brief Return the current time * \ingroup SURF_simulation * * Return the current time in millisecond. */ -double surf_get_clock(void); +XBT_PUBLIC(double)surf_get_clock(void); /** \brief Exit SURF * \ingroup SURF_simulation @@ -409,6 +422,8 @@ double surf_get_clock(void); * * \see surf_init() */ -void surf_exit(void); +XBT_PUBLIC(void) surf_exit(void); + +SG_END_DECL() #endif /* _SURF_SURF_H */