From: Martin Quinson Date: Fri, 26 Feb 2016 14:37:41 +0000 (+0100) Subject: Remove ROUTING_HOST_LEVEL: was not used anymore X-Git-Tag: v3_13~656 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/a83da0dd5325af5750397b7709bc851317a976ea Remove ROUTING_HOST_LEVEL: was not used anymore --- diff --git a/include/simgrid/s4u/host.hpp b/include/simgrid/s4u/host.hpp index c235cc59e4..2e5144a0ca 100644 --- a/include/simgrid/s4u/host.hpp +++ b/include/simgrid/s4u/host.hpp @@ -111,7 +111,6 @@ public: extern int MSG_HOST_LEVEL; extern int SIMIX_HOST_LEVEL; -extern int ROUTING_HOST_LEVEL; extern int USER_HOST_LEVEL; #endif /* SIMGRID_S4U_HOST_HPP */ diff --git a/src/s4u/s4u_host.cpp b/src/s4u/s4u_host.cpp index e1c5097573..892337cd67 100644 --- a/src/s4u/s4u_host.cpp +++ b/src/s4u/s4u_host.cpp @@ -22,7 +22,6 @@ int MSG_HOST_LEVEL; int SIMIX_HOST_LEVEL; -int ROUTING_HOST_LEVEL; int USER_HOST_LEVEL; namespace simgrid { diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index da0f26d186..99aa45eaee 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -86,10 +86,6 @@ void sg_host_init() __MSG_host_priv_free((msg_host_priv_t) p); }); - ROUTING_HOST_LEVEL = simgrid::s4u::Host::extension_create([](void *p) { - delete static_cast(p); - }); - SIMIX_HOST_LEVEL = simgrid::s4u::Host::extension_create(SIMIX_host_destroy); USER_HOST_LEVEL = simgrid::s4u::Host::extension_create(NULL); }