X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/39c935d6d5ee86d153f6f7e6a10d723ae7c57f6f..ea74f5d95928a521a588737e81f1de94eef25d19:/src/mc/remote/Channel.cpp diff --git a/src/mc/remote/Channel.cpp b/src/mc/remote/Channel.cpp index be28998d61..43ace95034 100644 --- a/src/mc/remote/Channel.cpp +++ b/src/mc/remote/Channel.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2015-2021. The SimGrid Team. +/* Copyright (c) 2015-2022. The SimGrid Team. * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it @@ -8,9 +8,10 @@ #include #include -#include +#include #include #include +#include XBT_LOG_NEW_DEFAULT_SUBCATEGORY(mc_Channel, mc, "MC interprocess communication"); @@ -26,10 +27,12 @@ Channel::~Channel() /** @brief Send a message; returns 0 on success or errno on failure */ int Channel::send(const void* message, size_t size) const { - XBT_DEBUG("Send %s", MC_message_type_name(*(MessageType*)message)); + XBT_DEBUG("Send %s", to_c_str(*(MessageType*)message)); while (::send(this->socket_, message, size, 0) == -1) { - if (errno != EINTR) + if (errno != EINTR) { + XBT_ERROR("Channel::send failure: %s", strerror(errno)); return errno; + } } return 0; } @@ -38,7 +41,9 @@ ssize_t Channel::receive(void* message, size_t size, bool block) const { ssize_t res = recv(this->socket_, message, size, block ? 0 : MSG_DONTWAIT); if (res != -1) - XBT_DEBUG("Receive %s", MC_message_type_name(*(MessageType*)message)); + XBT_DEBUG("Receive %s", to_c_str(*(MessageType*)message)); + else + XBT_ERROR("Channel::receive failure: %s", strerror(errno)); return res; } }