mirror of
https://github.com/mmueller41/mxtasking.git
synced 2026-01-21 12:42:57 +01:00
Call constructor for Thread.
This commit is contained in:
@@ -61,7 +61,9 @@ class EpochManager : Genode::Thread
|
||||
public:
|
||||
EpochManager(const std::uint16_t count_channels, dynamic::Allocator &allocator,
|
||||
util::maybe_atomic<bool> &is_running) noexcept
|
||||
: _count_channels(count_channels), _is_running(is_running), _allocator(allocator)
|
||||
:
|
||||
Thread(system::Environment::env, Name("EpochManager"), 8192),
|
||||
_count_channels(count_channels), _is_running(is_running), _allocator(allocator)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user