Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'models_type_rework_part2_try2' into 'master'
[simgrid.git] / src / kernel / resource / Resource.cpp
1 /* Copyright (c) 2004-2021. The SimGrid Team. All rights reserved.          */
2
3 /* This program is free software; you can redistribute it and/or modify it
4  * under the terms of the license (GNU LGPL) which comes with this package. */
5
6 #include "simgrid/kernel/resource/Resource.hpp"
7 #include "src/kernel/resource/profile/FutureEvtSet.hpp"
8 #include "src/kernel/resource/profile/Profile.hpp"
9 #include "src/surf/surf_interface.hpp"
10
11 namespace simgrid {
12 namespace kernel {
13 namespace resource {
14
15 void Resource::set_state_profile(profile::Profile* profile)
16 {
17   xbt_assert(state_event_ == nullptr, "Cannot set a second state profile to %s", get_cname());
18   state_event_ = profile->schedule(&profile::future_evt_set, this);
19 }
20
21 } // namespace resource
22 } // namespace kernel
23 } // namespace simgrid