Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add an implementation trick to speed up SG realm
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 18 Jun 2004 18:08:17 +0000 (18:08 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Fri, 18 Jun 2004 18:08:17 +0000 (18:08 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@116 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/gras/Virtu/virtu_interface.h

index 170e999..f15a714 100644 (file)
@@ -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;