Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge pull request #188 from Takishipp/clean_events
[simgrid.git] / src / kernel / activity / ExecImpl.hpp
1 /* Copyright (c) 2007-2017. 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 #ifndef SIMIX_SYNCHRO_EXEC_HPP
7 #define SIMIX_SYNCHRO_EXEC_HPP
8
9 #include "src/kernel/activity/ActivityImpl.hpp"
10 #include "surf/surf.h"
11
12 namespace simgrid {
13 namespace kernel {
14 namespace activity {
15
16 XBT_PUBLIC_CLASS ExecImpl : public ActivityImpl
17 {
18   ~ExecImpl() override;
19
20 public:
21   ExecImpl(const char* name, sg_host_t host);
22   void suspend() override;
23   void resume() override;
24   void post() override;
25   double remains();
26
27   sg_host_t host_ =
28       nullptr; /* The host where the execution takes place. If nullptr, then this is a parallel exec (and only surf
29                   knows the hosts) */
30   surf_action_t surf_exec       = nullptr; /* The Surf execution action encapsulated */
31   surf::Action* timeoutDetector = nullptr;
32 };
33 }
34 }
35 } // namespace simgrid::kernel::activity
36 #endif