X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dc8693292f51fdafaf2beee368741f75087aaf74..d07e7725e5403b21d0cfab0a8fea8a1f30fcc8bf:/src/simix/Synchro.h diff --git a/src/simix/Synchro.h b/src/simix/Synchro.h index b9720fe34d..6421d5c28c 100644 --- a/src/simix/Synchro.h +++ b/src/simix/Synchro.h @@ -6,6 +6,9 @@ #ifndef _SIMIX_SYNCHRO_HPP #define _SIMIX_SYNCHRO_HPP +#include +#include + #include #include "simgrid/forward.h" @@ -20,10 +23,9 @@ namespace simix { public: Synchro(); virtual ~Synchro(); - e_smx_state_t state; /* State of the synchro */ - char *name = nullptr; /* synchro name if any */ - xbt_fifo_t simcalls; /* List of simcalls waiting for this synchro */ - char *category = nullptr; /* For instrumentation */ + e_smx_state_t state = SIMIX_WAITING; /* State of the synchro */ + std::string name; /* synchro name if any */ + std::list simcalls; /* List of simcalls waiting for this synchro */ virtual void suspend()=0; virtual void resume()=0; @@ -32,7 +34,7 @@ namespace simix { void ref(); void unref(); private: - int refcount=1; + int refcount = 1; }; }} // namespace simgrid::simix #else /* not C++ */