X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/347996b4a10c4e8579080692afa60e0afb88b60a..558cfc9fc06c8d1a7206b5995d3736cc11319529:/src/surf/surf_c_bindings.cpp diff --git a/src/surf/surf_c_bindings.cpp b/src/surf/surf_c_bindings.cpp index 20e209bac5..2dbe05f5fb 100644 --- a/src/surf/surf_c_bindings.cpp +++ b/src/surf/surf_c_bindings.cpp @@ -4,10 +4,9 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#include "host_interface.hpp" +#include "src/surf/HostImpl.hpp" #include "surf_interface.hpp" #include "network_interface.hpp" -#include "surf_routing_cluster.hpp" #include "src/instr/instr_private.h" #include "plugins/energy.hpp" #include "virtual_machine.hpp" @@ -18,12 +17,12 @@ XBT_LOG_EXTERNAL_DEFAULT_CATEGORY(surf_kernel); * TOOLS * *********/ -static simgrid::surf::Host *get_casted_host(sg_host_t host){ //FIXME: killme - return host->extension(); +static simgrid::surf::HostImpl *get_casted_host(sg_host_t host){ //FIXME: killme + return host->extension(); } static simgrid::surf::VirtualMachine *get_casted_vm(sg_host_t host){ - return static_cast(host->extension()); + return static_cast(host->extension()); } extern double NOW; @@ -308,12 +307,6 @@ void surf_cpu_action_set_bound(surf_action_t action, double bound) { static_cast(action)->setBound(bound); } -#ifdef HAVE_LATENCY_BOUND_TRACKING -double surf_network_action_get_latency_limited(surf_action_t action) { - return static_cast(action)->getLatencyLimited(); -} -#endif - surf_file_t surf_storage_action_get_file(surf_action_t action){ return static_cast(action)->p_file; }