diff options
author | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-24 07:56:25 +0000 |
---|---|---|
committer | Romain Forlot <romain.forlot@iot.bzh> | 2017-02-24 07:56:25 +0000 |
commit | 92bc628a7b7cbf141c2bbc7e4ea3eeac62cd30dd (patch) | |
tree | 33da9227dfdd15634e3830b935d444171e9c181b /src/low-can-binding.cpp | |
parent | 035493b81d5bb6d909de05e9a06a0f61588a35aa (diff) |
Fix mutex about can_frame. Wrong location about
can frame mutex and adding around can socket
init.
Change-Id: I90c2200abf517ad4a9660c99a3ca02e52e069374
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
Diffstat (limited to 'src/low-can-binding.cpp')
-rw-r--r-- | src/low-can-binding.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/low-can-binding.cpp b/src/low-can-binding.cpp index 233f002..2fee114 100644 --- a/src/low-can-binding.cpp +++ b/src/low-can-binding.cpp @@ -60,20 +60,22 @@ can_bus_t *can_bus_handler; int can_frame_received(sd_event_source *s, int fd, uint32_t revents, void *userdata) { can_bus_dev_t *can_bus_dev = (can_bus_dev_t*)userdata; - std::lock_guard<std::mutex> can_frame_lock(can_frame_mutex); /* Notify reading thread that there is something to read */ if ((revents & EPOLLIN) != 0) { new_can_frame.notify_one(); } - /* check if error or hangup */ + /* check if error or hangup and reopen the socket and event_loop. + * socket is protected by a mutex */ if ((revents & (EPOLLERR|EPOLLRDHUP|EPOLLHUP)) != 0) { + std::lock_guard<std::mutex> can_frame_lock(can_frame_mutex); sd_event_source_unref(s); can_bus_dev->close(); can_bus_dev->open(); can_bus_dev->start_reading(*can_bus_handler); + can_bus_dev->event_loop_connection(); } return 0; |