Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
documentation 'improvement' (move it to the source file)
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 27 Jun 2005 22:25:34 +0000 (22:25 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 27 Jun 2005 22:25:34 +0000 (22:25 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@1434 48e7efb5-ca39-0410-a469-dd3cf9ba447f

include/amok/bandwidth.h

index 966bbde..ec2d1b6 100644 (file)
@@ -2,7 +2,7 @@
 
 /* amok_bandwidth - Bandwidth test facilities                               */
 
-/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
+/* Copyright (c) 2003-2005 Martin Quinson. All rights reserved.             */
 
 /* This program is free software; you can redistribute it and/or modify it
  * under the terms of the license (GNU LGPL) which comes with this package. */
 
 /* module handling */
 
-void amok_bw_init(void);
-void amok_bw_exit(void);
    
-
-
-/* ***************************************************************************
- * Bandwidth tests
- * ***************************************************************************/
-/**
- * amok_bw_test:
- * @peer: A (regular) socket at which the the host with which we should conduct the experiment can be contacted
- * @buf_size: Size of the socket buffer
- * @exp_size: Total size of data sent across the network
- * @msg_size: Size of each message sent. Ie, (@expSize % @msgSize) messages will be sent.
- * @sec: where the result (in seconds) should be stored.
- * @bw: observed Bandwidth (in Mb/s) 
+/** \addtogroup AMOK_bw
+ *  \brief Test the bandwidth between two nodes
+ *
+ *  This module allows you to retrieve the bandwidth between to arbitrary hosts, 
+ *  provided that they run some GRAS process which initialized this module.
+ *
+ *  The API is very simple. Use amok_bw_test() to get the BW between the local host
+ *  and the specified peer, or amok_bw_request() to get the BW between two remote 
+ *  hosts. The elapsed time, as long as the achieved bandwidth is returned in the 
+ *  last arguments of the functions.
+ *
+ *  All sizes are in kilo bytes.
  *
- * Conduct a bandwidth test from the local process to the given peer.
- * This call is blocking until the end of the experiment.
+ *  \todo Cleanup and implement the link saturation stuff.
+ *
+ *  @{
  */
+
+void amok_bw_init(void);
+void amok_bw_exit(void);
+
 xbt_error_t amok_bw_test(gras_socket_t peer,
                          unsigned long int buf_size,unsigned long int exp_size,unsigned long int msg_size,
                          /*OUT*/ double *sec, double *bw);
 
-/**
- * grasbw_request:
- * @from_name: Name of the host we are asking to do a experiment with (to_name:to_port)
- * @from_port: port on which the process we are asking for an experiment is listening for message
- * @to_name: Name of the host with which we should conduct the experiment
- * @to_port: port on which the peer process is listening (for message, do not 
- * give a raw socket here. The needed raw socket will be negociated between 
- * the peers)
- * @bufSize: Size of the socket buffer
- * @expSize: Total size of data sent across the network
- * @msgSize: Size of each message sent. Ie, (@expSize % @msgSize) messages will be sent.
- * @sec: where the result (in seconds) should be stored.
- * @bw: observed Bandwidth (in Mb/s)
- *
- * Conduct a bandwidth test from the process from_host:from_port to to_host:to_port.
- * This call is blocking until the end of the experiment.
- */
 xbt_error_t amok_bw_request(const char* from_name,unsigned int from_port,
                           const char* to_name,unsigned int to_port,
                           unsigned long int bufSize,unsigned long int expSize,unsigned long int msgSize,
                           /*OUT*/ double *sec, double*bw);
 
+/** @} */
 #if 0   
 
 /* ***************************************************************************