X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ff498d2432d650dc50282b04e3bd175a588eef8c..47950eebfede4e41862022469d15e5e4fe19c7ba:/src/kernel/activity/ExecImpl.hpp diff --git a/src/kernel/activity/ExecImpl.hpp b/src/kernel/activity/ExecImpl.hpp index 88b25eb3dc..ab926752b9 100644 --- a/src/kernel/activity/ExecImpl.hpp +++ b/src/kernel/activity/ExecImpl.hpp @@ -3,8 +3,8 @@ /* 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. */ -#ifndef SIMIX_SYNCHRO_EXEC_HPP -#define SIMIX_SYNCHRO_EXEC_HPP +#ifndef SIMGRID_KERNEL_ACTIVITY_EXEC_HPP +#define SIMGRID_KERNEL_ACTIVITY_EXEC_HPP #include "src/kernel/activity/ActivityImpl.hpp" #include "src/kernel/context/Context.hpp" @@ -16,7 +16,7 @@ namespace activity { class XBT_PUBLIC ExecImpl : public ActivityImpl_T { resource::Action* timeout_detector_ = nullptr; - double priority_ = 1.0; + double sharing_penalty_ = 1.0; double bound_ = 0.0; std::vector hosts_; std::vector flops_amounts_; @@ -26,7 +26,7 @@ class XBT_PUBLIC ExecImpl : public ActivityImpl_T { public: ExecImpl& set_timeout(double timeout); ExecImpl& set_bound(double bound); - ExecImpl& set_priority(double priority); + ExecImpl& set_sharing_penalty(double sharing_penalty); ExecImpl& set_flops_amount(double flop_amount); ExecImpl& set_host(s4u::Host* host); @@ -42,12 +42,9 @@ public: virtual ActivityImpl* migrate(s4u::Host* to); ExecImpl* start(); - void cancel(); void post() override; void finish() override; - static xbt::signal on_creation; - static xbt::signal on_completion; static xbt::signal on_migration; }; } // namespace activity