X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ecd5f7562caf1d443bf22788fa5f4fac408776ec..940de22d7f2af82d58be3e886e6bc22608b4d8ec:/src/kernel/activity/SleepImpl.hpp?ds=sidebyside diff --git a/src/kernel/activity/SleepImpl.hpp b/src/kernel/activity/SleepImpl.hpp index 5441f6145e..2713736353 100644 --- a/src/kernel/activity/SleepImpl.hpp +++ b/src/kernel/activity/SleepImpl.hpp @@ -1,4 +1,4 @@ -/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2007-2018. 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. */ @@ -13,15 +13,14 @@ namespace simgrid { namespace kernel { namespace activity { -XBT_PUBLIC_CLASS SleepImpl : public ActivityImpl -{ +class XBT_PUBLIC SleepImpl : public ActivityImpl { public: void suspend() override; void resume() override; void post() override; sg_host_t host = nullptr; /* The host that is sleeping */ - surf_action_t surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ + simgrid::kernel::resource::Action* surf_sleep = nullptr; /* The Surf sleeping action encapsulated */ }; } }