X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/be6e8d3215d3e25f48c7d2d0b359cf178f978d41..e9f0018b823e34405847177b25a85d3facc30ae1:/src/simix/ThreadContext.hpp diff --git a/src/simix/ThreadContext.hpp b/src/simix/ThreadContext.hpp index f0655b1161..d706a339b1 100644 --- a/src/simix/ThreadContext.hpp +++ b/src/simix/ThreadContext.hpp @@ -29,11 +29,11 @@ public: void suspend() override; private: /** A portable thread */ - xbt_os_thread_t thread_; + xbt_os_thread_t thread_ = nullptr; /** Semaphore used to schedule/yield the process */ - xbt_os_sem_t begin_; + xbt_os_sem_t begin_ = nullptr; /** Semaphore used to schedule/unschedule */ - xbt_os_sem_t end_; + xbt_os_sem_t end_ = nullptr; private: static void* wrapper(void *param); };