X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/0bb3be3bd3933227b8a9fbe29ff6bf426afb1649..be437b7fa306304527b4b99a22d4bd017586cd68:/src/amok/Bandwidth/bandwidth_private.h diff --git a/src/amok/Bandwidth/bandwidth_private.h b/src/amok/Bandwidth/bandwidth_private.h index a90431d6c5..39d71c2be4 100644 --- a/src/amok/Bandwidth/bandwidth_private.h +++ b/src/amok/Bandwidth/bandwidth_private.h @@ -29,11 +29,11 @@ void amok_bw_sat_leave(void);/* Each process must run it */ ***/ /* Request for a BW experiment. - * If host==NULL, it should be between the sender and the receiver. - * If not, it should be between between the receiver and host (3-tiers). + * If peer==NULL, it should be between the sender and the receiver. + * If not, it should be between between the receiver and peer (3-tiers). */ typedef struct { - s_xbt_host_t host; /* host+raw socket to use */ + s_xbt_peer_t peer; /* peer+raw socket to use */ unsigned long int buf_size; unsigned long int exp_size; unsigned long int msg_size; @@ -52,10 +52,10 @@ typedef struct { * Saturation stuff ***/ -/* Description of a saturation experiment (payload asking some host to collaborate for that) +/* Description of a saturation experiment (payload asking some peer to collaborate for that) */ typedef struct { - s_xbt_host_t host; /* host+raw socket to use */ + s_xbt_peer_t peer; /* peer+raw socket to use */ unsigned int msg_size; unsigned int duration; } s_sat_request_t,*sat_request_t;