mirror of
https://git.intern.spaceteamaachen.de/ALPAKA/TACOS.git
synced 2025-12-16 14:28:04 +00:00
Fixed compiler errors
This commit is contained in:
@@ -20,11 +20,13 @@ namespace sta
|
||||
TacosThread::TacosThread(const char* name, osPriority_t prio)
|
||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_))),
|
||||
attribs_{ .name = name, .priority = prio }
|
||||
{
|
||||
{}
|
||||
|
||||
}
|
||||
TacosThread::TacosThread()
|
||||
: RtosThread(RtosHandle<osThreadId_t>(Handle::Deferred(&instance_)))
|
||||
{}
|
||||
|
||||
static void entry_point(void* arg)
|
||||
void TacosThread::entry_point(void* arg)
|
||||
{
|
||||
STA_ASSERT(arg != nullptr);
|
||||
|
||||
@@ -81,6 +83,12 @@ namespace sta
|
||||
{
|
||||
return std::strcmp(this->getName(), other.getName()) < 0;
|
||||
}
|
||||
|
||||
void TacosThread::init(){}
|
||||
void TacosThread::func(){}
|
||||
|
||||
TacosThread::~TacosThread(){}
|
||||
|
||||
} // namespace tacos
|
||||
} // namespace sta
|
||||
|
||||
|
||||
Reference in New Issue
Block a user