aboutsummaryrefslogtreecommitdiffstats
path: root/src/can/can-bus.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-03-13 00:04:37 +0100
committerRomain Forlot <romain.forlot@iot.bzh>2017-03-16 17:14:37 +0100
commitb4f03616bbf4b69c1f644b4c58462ef9a8e7f8a9 (patch)
tree9bb27b71f98252430efb808a1c6c7aa896b0638d /src/can/can-bus.hpp
parent2471f77c91357454c7e2449a70ca429d09884965 (diff)
Default value about thread state set at false.
Change-Id: I1934aa4d9a9d945a32d8e369cf0f36b1e06d3f34 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can/can-bus.hpp')
-rw-r--r--src/can/can-bus.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/can/can-bus.hpp b/src/can/can-bus.hpp
index d4d6d74..a001d1e 100644
--- a/src/can/can-bus.hpp
+++ b/src/can/can-bus.hpp
@@ -53,11 +53,11 @@ private:
void can_decode_message();
std::thread th_decoding_; /// < thread that'll handle decoding a can frame
- bool is_decoding_; /// < boolean member controling thread while loop
+ bool is_decoding_ = false; /// < boolean member controling thread while loop
void can_event_push();
std::thread th_pushing_; /// < thread that'll handle pushing decoded can frame to subscribers
- bool is_pushing_; /// < boolean member controling thread while loop
+ bool is_pushing_ = false; /// < boolean member controling thread while loop
std::condition_variable new_can_message_cv_; /// < condition_variable use to wait until there is a new CAN message to read
std::mutex can_message_mutex_; /// < mutex protecting the can_message_q_ queue.