From 4fda0d96b8b77d881e921ed32322140d899a0191 Mon Sep 17 00:00:00 2001 From: Henri Casanova Date: Tue, 8 Nov 2011 14:07:48 -1000 Subject: [PATCH] My yearly totally useless commit to SimGrid. The error message in MSG_task_irecv() mistakenly was about MSG_task_put() due to a bad cut-and-paste. Only by writing totally bogus MSG code was I able to fix this horrendous bug that had escaped SimGrid developers for months...no. I am not ashamed of myself. --- src/msg/gos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/msg/gos.c b/src/msg/gos.c index 4a09c655dd..de98ec029b 100644 --- a/src/msg/gos.c +++ b/src/msg/gos.c @@ -499,7 +499,7 @@ msg_comm_t MSG_task_irecv(m_task_t *task, const char *name) if (*task) XBT_CRITICAL - ("MSG_task_get() was asked to write in a non empty task struct."); + ("MSG_task_irecv() was asked to write in a non empty task struct."); /* Try to receive it by calling SIMIX network layer */ msg_comm_t comm = xbt_new0(s_msg_comm_t, 1); -- 2.20.1