Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Only adds the XBT_PUBLIC macro decoration a the begining of the public API functions.
[simgrid.git] / src / amok / Bandwidth / bandwidth_private.h
index 39d71c2..74cf57c 100644 (file)
 #include "gras.h"
 #include "amok/bandwidth.h"
 
-void amok_bw_bw_init(void); /* Must be called only once per node */
-void amok_bw_bw_join(void); /* Each process must run it */
-void amok_bw_bw_leave(void);/* Each process must run it */
+XBT_PUBLIC void amok_bw_bw_init(void); /* Must be called only once per node */
+XBT_PUBLIC void amok_bw_bw_join(void); /* Each process must run it */
+XBT_PUBLIC void amok_bw_bw_leave(void);/* Each process must run it */
 
-void amok_bw_sat_init(void); /* Must be called only once per node */
-void amok_bw_sat_join(void); /* Each process must run it */
-void amok_bw_sat_leave(void);/* Each process must run it */
+XBT_PUBLIC void amok_bw_sat_init(void); /* Must be called only once per node */
+XBT_PUBLIC void amok_bw_sat_join(void); /* Each process must run it */
+XBT_PUBLIC void amok_bw_sat_leave(void);/* Each process must run it */
 
 /***
  * Plain bandwidth measurement stuff
@@ -60,7 +60,7 @@ typedef struct {
   unsigned int duration;
 } s_sat_request_t,*sat_request_t;
 
-void amok_bw_sat_start(const char* from_name,unsigned int from_port,
+XBT_PUBLIC void amok_bw_sat_start(const char* from_name,unsigned int from_port,
                       const char* to_name,unsigned int to_port,
                       unsigned int msg_size, unsigned int duration);