Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
1d7e83e2d06c80e3d025b4a4ef244ba2f6242ede
[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
9 #include <string>
10
11 #include <xbt/base.h>
12 #include "simgrid/forward.h"
13
14 #ifdef __cplusplus
15
16 #include <simgrid/simix.hpp>
17
18 namespace simgrid {
19 namespace simix {
20
21   XBT_PUBLIC_CLASS Synchro {
22   public:
23     Synchro();
24     virtual ~Synchro();
25     e_smx_state_t state;               /* State of the synchro */
26     std::string name;                  /* synchro name if any */
27     xbt_fifo_t simcalls;               /* List of simcalls waiting for this synchro */
28     char *category = nullptr;          /* For instrumentation */
29
30     virtual void suspend()=0;
31     virtual void resume()=0;
32     virtual void post() =0; // What to do when a simcall terminates
33
34     void ref();
35     void unref();
36   private:
37     int refcount=1;
38   };
39 }} // namespace simgrid::simix
40 #else /* not C++ */
41
42
43 #endif
44
45 #endif