Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of scm.gforge.inria.fr:/gitroot/simgrid/simgrid
[simgrid.git] / src / simix / Synchro.h
1 /* Copyright (c) 2007-2016. 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_HPP
7 #define _SIMIX_SYNCHRO_HPP
8 #include "simgrid/forward.h"
9
10 #ifdef __cplusplus
11
12 #include <simgrid/simix.hpp>
13
14 namespace simgrid {
15 namespace simix {
16
17   class Synchro {
18   public:
19     Synchro();
20     virtual ~Synchro();
21     e_smx_state_t state;               /* State of the synchro */
22     char *name = nullptr;              /* synchro name if any */
23     xbt_fifo_t simcalls;               /* List of simcalls waiting for this synchro */
24     char *category = nullptr;          /* For instrumentation */
25
26     virtual void suspend()=0;
27     virtual void resume()=0;
28     virtual void post() =0; // What to do when a simcall terminates
29
30     void ref();
31     void unref();
32   private:
33     int refcount=1;
34   };
35 }} // namespace simgrid::simix
36 #else /* not C++ */
37
38
39 #endif
40
41 #endif