From: Gabriel Corona Date: Thu, 1 Oct 2015 12:43:08 +0000 (+0200) Subject: Hide more symbols X-Git-Tag: v3_12~79^2~1 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/91ffdb125afc9311a5fbf5c09b583c38b8115f12 Hide more symbols --- diff --git a/src/include/simgrid/sg_config.h b/src/include/simgrid/sg_config.h index 2c1c75aa8e..fbe0d5e3ed 100644 --- a/src/include/simgrid/sg_config.h +++ b/src/include/simgrid/sg_config.h @@ -23,7 +23,7 @@ XBT_PUBLIC(int) sg_cfg_get_boolean(const char* name); XBT_PUBLIC(void) sg_cfg_get_peer(const char *name, char **peer, int *port); XBT_PUBLIC(xbt_dynar_t) sg_cfg_get_dynar(const char* name); -void sg_config_init(int *argc, char **argv); -void sg_config_finalize(void); +XBT_PUBLIC(void) sg_config_init(int *argc, char **argv); +XBT_PUBLIC(void) sg_config_finalize(void); SG_END_DECL() diff --git a/src/include/smpi/smpi_interface.h b/src/include/smpi/smpi_interface.h index 25845ca8e1..7b37c8e785 100644 --- a/src/include/smpi/smpi_interface.h +++ b/src/include/smpi/smpi_interface.h @@ -119,8 +119,8 @@ XBT_PUBLIC(int) find_coll_description(s_mpi_coll_description_t * table, char *name, const char *desc); -extern double smpi_wtime_sleep; -extern double smpi_iprobe_sleep; -extern double smpi_test_sleep; +extern XBT_PRIVATE double smpi_wtime_sleep; +extern XBT_PRIVATE double smpi_iprobe_sleep; +extern XBT_PRIVATE double smpi_test_sleep; #endif /* _SMPI_INTERFAC_H */ diff --git a/src/include/surf/surf.h b/src/include/surf/surf.h index 31522c6bfe..25468dadcb 100644 --- a/src/include/surf/surf.h +++ b/src/include/surf/surf.h @@ -25,13 +25,13 @@ SG_BEGIN_DECL() /* Actions and models are highly connected structures... */ /* user-visible parameters */ -extern double sg_tcp_gamma; -extern double sg_sender_gap; -extern double sg_latency_factor; -extern double sg_bandwidth_factor; -extern double sg_weight_S_parameter; -extern int sg_network_crosstraffic; -extern xbt_dynar_t surf_path; +extern XBT_PRIVATE double sg_tcp_gamma; +extern XBT_PRIVATE double sg_sender_gap; +extern XBT_PRIVATE double sg_latency_factor; +extern XBT_PRIVATE double sg_bandwidth_factor; +extern XBT_PRIVATE double sg_weight_S_parameter; +extern XBT_PRIVATE int sg_network_crosstraffic; +extern XBT_PRIVATE xbt_dynar_t surf_path; typedef enum { SURF_NETWORK_ELEMENT_NULL = 0, /* NULL */