X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/d1a8a4e291642999663c8cff03158c1041ff4916..7f7ba67e52224437975f8100739764702dd059d9:/src/simgrid/host.cpp diff --git a/src/simgrid/host.cpp b/src/simgrid/host.cpp index 3a02cca91f..99aa45eaee 100644 --- a/src/simgrid/host.cpp +++ b/src/simgrid/host.cpp @@ -9,7 +9,7 @@ #include #include -#include "src/surf/HostImplem.hpp" +#include "src/surf/HostImpl.hpp" #include "surf/surf.h" // routing_get_network_element_type FIXME:killme #include "src/simix/smx_private.hpp" @@ -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); } @@ -126,11 +122,11 @@ void sg_host_simix_destroy(sg_host_t host) { // ========= storage related functions ============ xbt_dict_t sg_host_get_mounted_storage_list(sg_host_t host){ - return host->extension()->getMountedStorageList(); + return host->extension()->getMountedStorageList(); } xbt_dynar_t sg_host_get_attached_storage_list(sg_host_t host){ - return host->extension()->getAttachedStorageList(); + return host->extension()->getAttachedStorageList(); }