From 54f2eb06fc9234cde1fba6d9ba2f32bda3f59a26 Mon Sep 17 00:00:00 2001 From: Gabriel Corona Date: Mon, 11 Jan 2016 17:23:44 +0100 Subject: [PATCH] [simix] Fix unitialized thread_ in ThreadContext --- src/simix/ThreadContext.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); }; -- 2.20.1