Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
correction of a little bug
[simgrid.git] / include / amok / bandwidth.h
index 13e45b3..80a99bc 100644 (file)
@@ -93,15 +93,19 @@ XBT_PUBLIC(void) amok_bw_init(void);
 XBT_PUBLIC(void) amok_bw_exit(void);
 
 XBT_PUBLIC(void) amok_bw_test(gras_socket_t peer,
-                 unsigned long int buf_size,unsigned long int exp_size,unsigned long int msg_size,
-                 double min_duration,
-         /*OUT*/ double *sec, double *bw);
+                            unsigned long int buf_size,
+                            unsigned long int msg_size,
+                            unsigned long int msg_amount,
+                            double min_duration,
+                            /*OUT*/ double *sec, double *bw);
 
 XBT_PUBLIC(void) amok_bw_request(const char* from_name,unsigned int from_port,
                     const char* to_name,unsigned int to_port,
-                    unsigned long int buf_size,unsigned long int exp_size,unsigned long int msg_size,
-                    double min_duration,
-            /*OUT*/ double *sec, double*bw);
+                               unsigned long int buf_size,
+                               unsigned long int msg_size,
+                               unsigned long int msg_amount,
+                               double min_duration,
+                               /*OUT*/ double *sec, double*bw);
 
 XBT_PUBLIC(double*) amok_bw_matrix(xbt_dynar_t hosts, /* dynar of xbt_host_t */
                                   int buf_size_bw, int msg_size_bw, int msg_amount_bw, double min_duration);