Userspace dolphin daemon, netlink dolphin setup for real time models
1 unresolved thread
Still cleaning old code up. Still need to do more testing on a robust test stand.
Edited by Ezekiel Dohmen
Merge request reports
Activity
assigned to @ezekiel.dohmen
added 1 commit
- a151c8da - Cleanup, better names and adding dolphin_daemon to cmake build
added 1 commit
- c9f77c3f - Removing cout and adding compile flag to fix warning
added 1 commit
- 7f358114 - Fixing issue causing R and W pointer to be the same
requested review from @erik.vonreis
- src/dolphin_daemon/include/LIGO_Thread.hpp 0 → 100644
3 4 #include <thread> 5 #include <memory> 6 7 class LIGO_Thread 8 { 9 public: 10 11 virtual void thread_body() = 0; 12 13 void nonblocking_start() 14 { 15 _thread = std::thread(&LIGO_Thread::thread_body, this); 16 } 17 18 void blocking_satrt() changed this line in version 11 of the diff
Please register or sign in to reply