Skip to content
Snippets Groups Projects

Userspace dolphin daemon, netlink dolphin setup for real time models

Merged Ezekiel Dohmen requested to merge ezekiel.dohmen/advligorts:userspace-dolphin into master
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

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
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()
  • Ezekiel Dohmen added 1 commit

    added 1 commit

    • 45a72207 - Fixing typo, and adding some comments

    Compare with previous version

  • Please register or sign in to reply
    Loading