Robin Mueller
d226726a27
Some checks failed
EIVE/eive-obsw/pipeline/pr-develop There was a failure building this commit
15 lines
408 B
C++
15 lines
408 B
C++
#pragma once
|
|
|
|
#include <fsfw/osal/linux/PosixThread.h>
|
|
#include <fsfw/tasks/TaskFactory.h>
|
|
|
|
namespace scheduling {
|
|
|
|
extern PosixThreadArgs RR_SCHEDULING;
|
|
extern PosixThreadArgs NORMAL_SCHEDULING;
|
|
|
|
void scheduleScexDev(PeriodicTaskIF*& scexDevHandler);
|
|
void scheduleScexReader(TaskFactory& factory, PeriodicTaskIF*& scexReaderTask);
|
|
void addMpsocSupvHandlers(PeriodicTaskIF* task);
|
|
} // namespace scheduling
|