X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a62b64d7cff5f86059bf7ec5df2d4f60a61a827b..5d67901dba3dfd8e75f708c329b8144287490077:/src/simix/SynchroRaw.hpp diff --git a/src/simix/SynchroRaw.hpp b/src/simix/SynchroRaw.hpp new file mode 100644 index 0000000000..3d8a28e473 --- /dev/null +++ b/src/simix/SynchroRaw.hpp @@ -0,0 +1,22 @@ +/* Copyright (c) 2007-2016. 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. */ + +#ifndef _SIMIX_SYNCHRO_RAW_HPP +#define _SIMIX_SYNCHRO_RAW_HPP + +#include "src/simix/Synchro.h" + +namespace simgrid { +namespace simix { + + /** Used to implement mutexes, semaphores and conditions */ + XBT_PUBLIC_CLASS Raw : public Synchro { + public: + surf_action_t sleep; + }; + +}} // namespace simgrid::simix + +#endif