aboutsummaryrefslogtreecommitdiffstats
path: root/src/can_event_push.hpp
diff options
context:
space:
mode:
authorRomain Forlot <romain.forlot@iot.bzh>2017-02-23 17:52:35 +0000
committerRomain Forlot <romain.forlot@iot.bzh>2017-02-23 17:52:35 +0000
commit035493b81d5bb6d909de05e9a06a0f61588a35aa (patch)
treed459e901c4b74561eb2740a74e0f1b99d6fe5ddd /src/can_event_push.hpp
parentd59970dce571c1753174124326406ec1ff8e2ce8 (diff)
First draft about lock/wait thread management.
Reordering include files Change-Id: Ia6d9ee30eb4e1df0c380c26355679fe00b373aa8 Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/can_event_push.hpp')
-rw-r--r--src/can_event_push.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/can_event_push.hpp b/src/can_event_push.hpp
index 0e614f1e..00401448 100644
--- a/src/can_event_push.hpp
+++ b/src/can_event_push.hpp
@@ -18,8 +18,8 @@
#pragma once
-#include "can-utils.hpp"
-#include "can-signals.hpp"
-#include "openxc-utils.hpp"
+#include <mutex>
+#include <condition_variable>
-void can_event_push(can_bus_t& can_bus); \ No newline at end of file
+std::condition_variable update_subscrided_signals;
+std::mutex subscribed_signals_mutex; \ No newline at end of file