X-Git-Url: https://bilbo.iut-bm.univ-fcomte.fr/and/gitweb/loba.git/blobdiff_plain/892e36c1af3105e5f548a4ef8b9f777b95d47fc2..faf4f25d61d1bf77d5a2a4a21839a090612e46df:/communicator.cpp diff --git a/communicator.cpp b/communicator.cpp index 3516b68..daf1434 100644 --- a/communicator.cpp +++ b/communicator.cpp @@ -1,4 +1,5 @@ #include +#include #include #include @@ -14,12 +15,10 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(comm); communicator::communicator() : host(static_cast(MSG_host_get_data(MSG_host_self()))) { - receiver_mutex.acquire(); - receiver_thread = - MSG_process_create("receiver", communicator::receiver_wrapper, - this, MSG_host_self()); - receiver_cond.wait(receiver_mutex); // wait for the receiver to be ready - receiver_mutex.release(); + using std::tr1::bind; + receiver_thread = new_msg_thread("receiver", + bind(&communicator::receiver, this)); + receiver_thread->start(); } communicator::~communicator() @@ -34,12 +33,8 @@ communicator::~communicator() task = MSG_task_create("finalize", 0.0, 0, NULL); MSG_task_send(task, host->get_data_mbox()); - receiver_mutex.acquire(); - while (receiver_thread) { - XBT_DEBUG("waiting for receiver to terminate"); - receiver_cond.wait(receiver_mutex); - } - receiver_mutex.release(); + receiver_thread->wait(); + delete receiver_thread; if (!received.empty()) XBT_WARN("lost %zu received message%s!", @@ -87,21 +82,6 @@ bool communicator::recv(message*& msg, m_host_t& from, double timeout) return recvd; } -int communicator::receiver_wrapper(int, char* []) -{ - communicator* comm; - comm = static_cast(MSG_process_get_data(MSG_process_self())); - comm->receiver(); - - XBT_DEBUG("terminate"); - comm->receiver_mutex.acquire(); - comm->receiver_thread = NULL; - comm->receiver_cond.signal(); - comm->receiver_mutex.release(); - - return 0; -} - void communicator::receiver() { xbt_dynar_t comms = xbt_dynar_new(sizeof(msg_comm_t), NULL); @@ -119,11 +99,6 @@ void communicator::receiver() xbt_dynar_push(comms, &chan[i].comm); } - XBT_DEBUG("receiver ready"); - receiver_mutex.acquire(); - receiver_cond.signal(); // signal master that we are ready - receiver_mutex.release(); - while (!xbt_dynar_is_empty(comms)) { int index = MSG_comm_waitany(comms);