X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ad32fd753f73b8a8a14242781eb011e78446995a..f9df6a0ce7023e4e22d83bb6c50f27bd21fab329:/src/surf/surf_c_bindings.cpp diff --git a/src/surf/surf_c_bindings.cpp b/src/surf/surf_c_bindings.cpp index fb652db524..f3262aeb36 100644 --- a/src/surf/surf_c_bindings.cpp +++ b/src/surf/surf_c_bindings.cpp @@ -7,7 +7,6 @@ #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" @@ -28,13 +27,13 @@ static simgrid::surf::VirtualMachine *get_casted_vm(sg_host_t host){ extern double NOW; -void surf_presolve(void) +void surf_presolve() { double next_event_date = -1.0; - tmgr_trace_iterator_t event = NULL; + tmgr_trace_iterator_t event = nullptr; double value = -1.0; - simgrid::surf::Resource *resource = NULL; - simgrid::surf::Model *model = NULL; + simgrid::surf::Resource *resource = nullptr; + simgrid::surf::Model *model = nullptr; unsigned int iter; XBT_DEBUG ("Consume all trace events occurring before the starting time."); @@ -60,9 +59,9 @@ double surf_solve(double max_date) double next_event_date = -1.0; double model_next_action_end = -1.0; double value = -1.0; - simgrid::surf::Resource *resource = NULL; - simgrid::surf::Model *model = NULL; - tmgr_trace_iterator_t event = NULL; + simgrid::surf::Resource *resource = nullptr; + simgrid::surf::Model *model = nullptr; + tmgr_trace_iterator_t event = nullptr; unsigned int iter; if (max_date > 0.0) { @@ -77,7 +76,7 @@ double surf_solve(double max_date) if ((time_delta < 0.0 || next_event_phy < time_delta) && next_event_phy >= 0.0) { time_delta = next_event_phy; } - if (surf_vm_model != NULL) { + if (surf_vm_model != nullptr) { XBT_DEBUG("Looking for next event in virtual models"); double next_event_virt = surf_vm_model->next_occuring_event(NOW); if ((time_delta < 0.0 || next_event_virt < time_delta) && next_event_virt >= 0.0) @@ -163,7 +162,7 @@ double surf_solve(double max_date) surf_action_t surf_model_extract_done_action_set(surf_model_t model){ if (model->getDoneActionSet()->empty()) - return NULL; + return nullptr; surf_action_t res = &model->getDoneActionSet()->front(); model->getDoneActionSet()->pop_front(); return res; @@ -171,7 +170,7 @@ surf_action_t surf_model_extract_done_action_set(surf_model_t model){ surf_action_t surf_model_extract_failed_action_set(surf_model_t model){ if (model->getFailedActionSet()->empty()) - return NULL; + return nullptr; surf_action_t res = &model->getFailedActionSet()->front(); model->getFailedActionSet()->pop_front(); return res; @@ -189,19 +188,10 @@ surf_action_t surf_network_model_communicate(surf_network_model_t model, sg_host return model->communicate(src->pimpl_netcard, dst->pimpl_netcard, size, rate); } -const char *surf_resource_name(surf_cpp_resource_t resource){ - return resource->getName(); -} - surf_action_t surf_host_sleep(sg_host_t host, double duration){ return host->pimpl_cpu->sleep(duration); } - -double surf_host_get_available_speed(sg_host_t host){ - return host->pimpl_cpu->getAvailableSpeed(); -} - surf_action_t surf_host_open(sg_host_t host, const char* fullpath){ return get_casted_host(host)->open(fullpath); } @@ -273,11 +263,11 @@ sg_host_t surf_vm_get_pm(sg_host_t vm){ } void surf_vm_set_bound(sg_host_t vm, double bound){ - return get_casted_vm(vm)->setBound(bound); + get_casted_vm(vm)->setBound(bound); } void surf_vm_set_affinity(sg_host_t vm, sg_host_t host, unsigned long mask){ - return get_casted_vm(vm)->setAffinity(host->pimpl_cpu, mask); + get_casted_vm(vm)->setAffinity(host->pimpl_cpu, mask); } xbt_dict_t surf_storage_get_content(surf_resource_t resource){