Instance: fix io/rtio thread mixup
Fixes regression by commit 43d633f560
This commit is contained in:
parent
3558317dc9
commit
41cc695848
|
@ -73,7 +73,7 @@ struct Instance final
|
||||||
/**
|
/**
|
||||||
* A thread running an #EventLoop for non-blocking (bulk) I/O.
|
* A thread running an #EventLoop for non-blocking (bulk) I/O.
|
||||||
*/
|
*/
|
||||||
EventThread io_thread{true};
|
EventThread io_thread;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Another thread running an #EventLoop for non-blocking
|
* Another thread running an #EventLoop for non-blocking
|
||||||
|
@ -81,7 +81,7 @@ struct Instance final
|
||||||
* events which require low latency, e.g. for filling hardware
|
* events which require low latency, e.g. for filling hardware
|
||||||
* ring buffers.
|
* ring buffers.
|
||||||
*/
|
*/
|
||||||
EventThread rtio_thread;
|
EventThread rtio_thread{true};
|
||||||
|
|
||||||
#ifdef ENABLE_SYSTEMD_DAEMON
|
#ifdef ENABLE_SYSTEMD_DAEMON
|
||||||
Systemd::Watchdog systemd_watchdog{event_loop};
|
Systemd::Watchdog systemd_watchdog{event_loop};
|
||||||
|
|
Loading…
Reference in New Issue