Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
React sainly in gras_msg_wait() when the sender dies in RL between sending the header...
[simgrid.git] / src / gras / Msg / msg_interface.h
index b16ed5a..a6b84c9 100644 (file)
  * FIXME: it could be cleaned up ?
  */
 typedef struct {
+  /* set headers */
+  unsigned int ID;
+  char        *name;
+  unsigned int name_len;
+
   /*queue of msgs storing the ones got while msg_wait'ing for something else */
   xbt_dynar_t msg_queue; /* elm type: s_gras_msg_t */
 
@@ -32,9 +37,9 @@ typedef struct {
 } s_gras_msg_procdata_t,*gras_msg_procdata_t;
 
 
-xbt_error_t gras_msg_send_namev(gras_socket_t  sock, 
-                                const char    *namev, 
-                                void          *payload);
+void gras_msg_send_namev(gras_socket_t  sock, 
+                        const char    *namev, 
+                        void          *payload);
 
 #define GRAS_PROTOCOL_VERSION '\0';