Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Integrate Bruno's work on SIMIX onto main stream. Tests are broken, but it looks...
[simgrid.git] / src / gras / Msg / msg_interface.h
index 3595ead..2cb52fe 100644 (file)
@@ -13,6 +13,7 @@
 #define GRAS_MSG_INTERFACE_H
 
 #include "gras/transport.h"
+#include "xbt/fifo.h"
 
 /*
  * Data of this module specific to each process 
@@ -36,6 +37,9 @@ typedef struct {
    
   /* registered timers */
   xbt_dynar_t timers; /* elm type: s_gras_timer_t */
+       
+       /* queue storing the msgs that have to received and the process synchronization made (wait the surf action done) */
+       xbt_fifo_t msg_to_receive_queue; /* elm type: s_gras_msg_t */
 
 } s_gras_msg_procdata_t,*gras_msg_procdata_t;