Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[Cristian] Lots and lots of small fixes to MSG to work on top of SMX net keeping...
[simgrid.git] / src / msg / private.h
index 29f7a41..b8f05b1 100644 (file)
@@ -26,9 +26,7 @@ SG_BEGIN_DECL()
 /* this structure represents a mailbox */
      typedef struct s_msg_mailbox {
        char *alias;             /* the key of the mailbox in the global dictionary */
-       xbt_fifo_t tasks;        /* the list of the tasks in the mailbox */
        smx_cond_t cond;         /* the condition on the mailbox */
-       char *hostname;          /* the name of the host containing the mailbox */
        smx_rdv_t rdv;           /* SIMIX rendez-vous point */
      } s_msg_mailbox_t;
 
@@ -42,7 +40,7 @@ SG_BEGIN_DECL()
 
      typedef struct simdata_task {
        smx_action_t compute;    /* SURF modeling of computation  */
-       smx_action_t comm;       /* SURF modeling of communication  */
+       smx_comm_t comm;         /* SIMIX communication  */
        double message_size;     /* Data size  */
        double computation_amount;       /* Computation size  */
        smx_cond_t cond;