From: mquinson Date: Fri, 9 Jun 2006 14:46:01 +0000 (+0000) Subject: More logging and other cosmetics X-Git-Tag: v3.3~2994 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/cac5fc961fe896665cd3e266d18a9b53373285b5 More logging and other cosmetics git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2364 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/amok/Bandwidth/bandwidth.c b/src/amok/Bandwidth/bandwidth.c index aea3093a5e..8e80a8db48 100644 --- a/src/amok/Bandwidth/bandwidth.c +++ b/src/amok/Bandwidth/bandwidth.c @@ -375,7 +375,9 @@ void amok_bw_request(const char* from_name,unsigned int from_port, request->host.port = to_port; sock = gras_socket_client(from_name,from_port); - gras_msg_rpccall(sock,240,gras_msgtype_by_name("BW request"),&request, &result); + DEBUG4("Ask for a BW test between %s:%d and %s:%d", from_name,from_port, to_name,to_port); + + gras_msg_rpccall(sock,240,gras_msgtype_by_name("BW request"), &request, &result); if (sec) *sec=result->sec; @@ -420,11 +422,12 @@ int amok_bw_cb_bw_request(gras_msg_cb_ctx_t ctx, return 1; } +/** \brief builds a matrix of results of bandwidth measurement */ double * amok_bw_matrix(xbt_dynar_t hosts, int buf_size_bw, int exp_size_bw, int msg_size_bw, double min_duration) { double sec; - /* construct of matrixs for bandwith and Latency */ + /* construction of matrices for bandwith and latency */ int i,j,len=xbt_dynar_length(hosts);