Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
split smx_synchro_t into a hierarchy of C++ classes
[simgrid.git] / src / simix / smx_network_private.h
index 5c6adf8..039f8f5 100644 (file)
@@ -15,8 +15,8 @@
 
 /** @brief Rendez-vous point datatype */
 typedef struct s_smx_mailbox {
+  char *name;
   std::deque<smx_synchro_t> *comm_queue;
-  void *data;
   smx_process_t permanent_receiver; //process which the mailbox is attached to
   std::deque<smx_synchro_t> *done_comm_queue;//messages already received in the permanent receive mode
 } s_smx_mailbox_t;