Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill the useless _MSG_process_create_with_env_from_SIMIX(). _MSG_process_create_from_...
[simgrid.git] / src / smpi / private.h
index 6a6a436..1a8c584 100644 (file)
@@ -44,6 +44,10 @@ typedef struct smpi_mpi_request_t {
 
        smx_mutex_t mutex;
        smx_cond_t  cond;
+
+       void *data;
+       int forward;
+
 } s_smpi_mpi_request_t;
 
 // smpi mpi op
@@ -58,6 +62,10 @@ typedef struct smpi_received_message_t {
        int tag;
 
        void *buf;
+
+       void *data;
+       int forward;
+
 } s_smpi_received_message_t;
 typedef struct smpi_received_message_t *smpi_received_message_t;