mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-08-02 16:51:53 +00:00
Changed super-constructor call for TacosThread
This commit is contained in:
parent
cf508244bc
commit
5b70001370
@ -20,7 +20,7 @@ namespace sta
|
|||||||
namespace tacos
|
namespace tacos
|
||||||
{
|
{
|
||||||
TacosThread::TacosThread(const char* name, osPriority_t prio, uint32_t stack_size /* = 0 */, uint32_t cb_size /* = 0 */)
|
TacosThread::TacosThread(const char* name, osPriority_t prio, uint32_t stack_size /* = 0 */, uint32_t cb_size /* = 0 */)
|
||||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_))),
|
: RtosThread(name, prio, stack_size, cb_size),
|
||||||
instance_{ NULL },
|
instance_{ NULL },
|
||||||
attribs_{ .name=name, .cb_size=cb_size, .stack_size=stack_size, .priority=prio },
|
attribs_{ .name=name, .cb_size=cb_size, .stack_size=stack_size, .priority=prio },
|
||||||
running_{false},
|
running_{false},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user