+}
+
+void communicator::receiver()
+{
+ xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL);
+ struct channel {
+ msg_comm_t comm;
+ msg_task_t task;
+ const char* mbox;
+ message_queue& received;
+ };
+ channel chan[] = { { NULL, NULL, host->get_ctrl_mbox(), ctrl_received },
+ { NULL, NULL, host->get_data_mbox(), data_received } };
+ const int chan_size = (sizeof chan) / (sizeof chan[0]);
+
+ for (int i = 0 ; i < chan_size ; ++i) {
+ chan[i].comm = MSG_task_irecv(&chan[i].task, chan[i].mbox);
+ xbt_dynar_push(comms, &chan[i].comm);
+ }
+
+ while (!xbt_dynar_is_empty(comms)) {
+
+ int index = MSG_comm_waitany(comms);
+ msg_comm_t finished_comm = xbt_dynar_get_as(comms, index, msg_comm_t);
+ channel* ch;
+
+ for (ch = chan ; ch->comm != finished_comm ; ++ch)
+ /* nop */;
+
+ comm_check_n_destroy(ch->comm);
+ if (strcmp(MSG_task_get_name(ch->task), "finalize")) {
+ XBT_DEBUG("received message on %s", ch->mbox);
+ ch->received.push(ch->task);
+ ch->task = NULL;
+ ch->comm = MSG_task_irecv(&ch->task, ch->mbox);
+ xbt_dynar_set_as(comms, index, msg_comm_t, ch->comm);
+ } else {
+ XBT_DEBUG("received finalize on %s", ch->mbox);
+ MSG_task_destroy(ch->task);
+ ch->task = NULL;
+ ch->comm = NULL;
+ xbt_dynar_remove_at(comms, index, NULL);
+ }