Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics in comments and error messages
authorMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Jan 2016 20:46:49 +0000 (21:46 +0100)
committerMartin Quinson <martin.quinson@loria.fr>
Wed, 6 Jan 2016 20:46:49 +0000 (21:46 +0100)
src/simgrid/host.cpp
src/surf/network_cm02.cpp

index 5e1656f..df6a15b 100644 (file)
@@ -64,9 +64,9 @@ int SIMIX_HOST_LEVEL;
 int ROUTING_HOST_LEVEL;
 int USER_HOST_LEVEL;
 
-#include "src/msg/msg_private.h" // MSG_host_priv_free. FIXME: killme
-#include "src/simdag/simdag_private.h" // __SD_workstation_destroy. FIXME: killme
-#include "src/simix/smx_host_private.h" // SIMIX_host_destroy. FIXME: killme
+#include "src/msg/msg_private.h" // MSG_host_priv_free. FIXME: killme by initializing that level in msg when used
+#include "src/simdag/simdag_private.h" // __SD_workstation_destroy. FIXME: killme by initializing that level in simdag when used
+#include "src/simix/smx_host_private.h" // SIMIX_host_destroy. FIXME: killme by initializing that level in simix when used
 #include "src/surf/cpu_interface.hpp"
 #include "src/surf/surf_routing.hpp"
 
index 1858cfd..f0fce7b 100644 (file)
@@ -352,7 +352,7 @@ Action *NetworkCm02Model::communicate(NetCard *src, NetCard *dst,
 
   routing_platf->getRouteAndLatency(src, dst, &route, &latency);
   xbt_assert(!xbt_dynar_is_empty(route) || latency,
-             "You're trying to send data from %s to %s but there is no connection at all between these two hosts.",
+             "You're trying to send data from %s to %s but there is no connecting path between these two hosts.",
              src->getName(), dst->getName());
 
   xbt_dynar_foreach(route, i, _link) {