Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Detect and diagnose a possible user error
authorMartin Quinson <martin.quinson@loria.fr>
Sat, 10 Dec 2016 16:50:02 +0000 (17:50 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Sat, 10 Dec 2016 16:50:02 +0000 (17:50 +0100)
src/msg/msg_gos.cpp

index ba4b478..0abc0ce 100644 (file)
@@ -574,6 +574,14 @@ int MSG_comm_testany(xbt_dynar_t comms)
  */
 void MSG_comm_destroy(msg_comm_t comm)
 {
+  /* Diagnose a possible user error: destroying a comm that is not done yet, and not detached either  */
+  if ((comm->s_comm->state == SIMIX_READY || comm->s_comm->state == SIMIX_RUNNING)
+      && (!static_cast<simgrid::kernel::activity::Comm*>(comm->s_comm)->detached))
+    XBT_WARN("You are destroying a communication that is not done yet but %s. "
+             "This will lead to issues when the other side continues this communication. "
+             "Are you looking for MSG_task_dsend()?",
+             (comm->s_comm->state == SIMIX_READY ? "ready" : "running"));
+
   xbt_free(comm);
 }