Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Implement SD_task_schedule, SD_task_unschedule and other SimDag stuff.
[simgrid.git] / src / gras / Transport / transport_interface.h
index 8627e32..0cad561 100644 (file)
@@ -12,6 +12,8 @@
 #ifndef GRAS_TRP_INTERFACE_H
 #define GRAS_TRP_INTERFACE_H
 
+#include "portable.h" /* sometimes needed for fd_set */
+
 /***
  *** Main user functions
  ***/
@@ -23,6 +25,8 @@ void gras_trp_flush(gras_socket_t sd);
 /* Find which socket needs to be read next */
 gras_socket_t gras_trp_select(double timeout);
 
+/* Set the peer process name (used by messaging layer) */
+void gras_socket_peer_proc_set(gras_socket_t sock,char*peer_proc);
 
 /***
  *** Plugin mechanism 
@@ -88,10 +92,13 @@ typedef struct {
   char        *name;
   unsigned int name_len;
 
+  xbt_dynar_t sockets; /* all sockets known to this process */
+  int myport; /* Port on which I listen myself */
+  fd_set *fdset;
+
   /* SG only elements. In RL, they are part of the OS ;) */
   int chan;    /* Formated messages channel */
   int measChan; /* Unformated echange channel for performance measurement*/
-  xbt_dynar_t sockets; /* all sockets known to this process */
    
 } s_gras_trp_procdata_t,*gras_trp_procdata_t;