From: mquinson Date: Fri, 18 Jun 2004 18:08:17 +0000 (+0000) Subject: Add an implementation trick to speed up SG realm X-Git-Tag: v3.3~5230 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/ebbe47974d28ad50f4dc76d0b70ec577082e8230?ds=sidebyside Add an implementation trick to speed up SG realm git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@116 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Virtu/virtu_interface.h b/src/gras/Virtu/virtu_interface.h index 170e9990a2..f15a714bac 100644 --- a/src/gras/Virtu/virtu_interface.h +++ b/src/gras/Virtu/virtu_interface.h @@ -28,8 +28,11 @@ typedef struct { /* The channel we are listening to in SG for formated messages */ int chan; + gras_socket_t *sock; /* the corresponding socket (SG only) */ + /* The channel we are listening to in SG for raw send/recv */ int rawChan; + gras_socket_t *rawSock;/* the corresponding socket (SG only) */ /* globals of the process */ void *userdata;