X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/581fd733dd72630f9aa9b7528503693bd857bbbd..731bd4b86d29ab2af91e306400a04024a6b47244:/src/surf/cpu_interface.cpp diff --git a/src/surf/cpu_interface.cpp b/src/surf/cpu_interface.cpp index 98bb02c9c9..0c7181333b 100644 --- a/src/surf/cpu_interface.cpp +++ b/src/surf/cpu_interface.cpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2013-2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2013-2019. The SimGrid Team. All rights reserved. */ /* 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. */ @@ -32,7 +32,7 @@ void CpuModel::update_actions_state_lazy(double now, double /*delta*/) } } -void CpuModel::update_actions_state_full(double now, double delta) +void CpuModel::update_actions_state_full(double /*now*/, double delta) { for (auto it = std::begin(*get_started_action_set()); it != std::end(*get_started_action_set());) { CpuAction& action = static_cast(*it); @@ -134,17 +134,11 @@ int Cpu::get_core_count() return core_count_; } -void Cpu::set_state_trace(tmgr_trace_t trace) -{ - xbt_assert(state_event_ == nullptr, "Cannot set a second state trace to Host %s", host_->get_cname()); - - state_event_ = future_evt_set->add_trace(trace, this); -} -void Cpu::set_speed_trace(tmgr_trace_t trace) +void Cpu::set_speed_profile(kernel::profile::Profile* profile) { xbt_assert(speed_.event == nullptr, "Cannot set a second speed trace to Host %s", host_->get_cname()); - speed_.event = future_evt_set->add_trace(trace, this); + speed_.event = profile->schedule(&future_evt_set, this); } @@ -172,22 +166,25 @@ void CpuAction::update_remains_lazy(double now) set_last_value(get_variable()->get_value()); } -simgrid::xbt::signal CpuAction::on_state_change; +simgrid::xbt::signal CpuAction::on_state_change; void CpuAction::suspend(){ - on_state_change(this); + Action::State previous = get_state(); + on_state_change(this, previous); Action::suspend(); } void CpuAction::resume(){ - on_state_change(this); + Action::State previous = get_state(); + on_state_change(this, previous); Action::resume(); } void CpuAction::set_state(Action::State state) { + Action::State previous = get_state(); Action::set_state(state); - on_state_change(this); + on_state_change(this, previous); } /** @brief returns a list of all CPUs that this action is using */