From: mquinson Date: Thu, 7 Sep 2006 15:25:36 +0000 (+0000) Subject: Some more info in comments X-Git-Tag: v3.3~2575 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/d15f902fbfa92925d4b48753f9f34472f9792424 Some more info in comments git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2784 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Transport/transport_private.h b/src/gras/Transport/transport_private.h index 9b384ecc29..4d33c193de 100644 --- a/src/gras/Transport/transport_private.h +++ b/src/gras/Transport/transport_private.h @@ -44,7 +44,8 @@ typedef struct s_gras_socket { int valid :1; /* false if a select returned that the peer quitted, forcing us to "close" the socket */ int moredata :1; /* TCP socket use a buffer and read operation get as much data as possible. It is possible that several messages are received in one shoot, and select won't catch them afterward again. - This boolean indicates that this is the case, so that we don't call select in that case. */ + This boolean indicates that this is the case, so that we don't call select in that case. + Note that measurement sockets are not concerned since they use the TCP interface directly, with no buffer. */ unsigned long int buf_size; /* what to say to the OS. field here to remember it when accepting */