Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
allow and use method chaining for ExecImpl
[simgrid.git] / src / kernel / activity / SleepImpl.hpp
index 2713736..2f09407 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2007-2018. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2007-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. */
@@ -15,12 +15,9 @@ namespace activity {
 
 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 */
-  simgrid::kernel::resource::Action* surf_sleep = nullptr; /* The Surf sleeping action encapsulated */
+  sg_host_t host                 = nullptr;
 };
 }
 }