eive-obsw/linux/scheduling.h

14 lines
353 B
C
Raw Permalink Normal View History

2022-11-15 17:22:28 +01:00
#pragma once
2022-11-15 16:59:33 +01:00
2023-03-24 11:58:45 +01:00
#include <fsfw/osal/linux/PosixThread.h>
#include <fsfw/tasks/TaskFactory.h>
namespace scheduling {
2023-03-24 11:58:45 +01:00
extern PosixThreadArgs RR_SCHEDULING;
extern PosixThreadArgs NORMAL_SCHEDULING;
2023-02-14 11:32:03 +01:00
void scheduleScexReader(TaskFactory& factory, PeriodicTaskIF*& scexReaderTask);
2022-11-10 14:08:44 +01:00
void addMpsocSupvHandlers(PeriodicTaskIF* task);
} // namespace scheduling