fsfw/src/fsfw/osal/host/taskHelpers.h
Robin Mueller 3a16290707
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
refactored and tested hosted and linux task IF
2022-05-19 00:44:34 +02:00

16 lines
368 B
C++

#ifndef FSFW_OSAL_HOST_TASKHELPERS_H_
#define FSFW_OSAL_HOST_TASKHELPERS_H_
#include <fsfw/returnvalues/HasReturnvaluesIF.h>
#include <thread>
namespace tasks {
ReturnValue_t insertTaskName(std::thread::id threadId, const std::string& taskName);
std::string getTaskName(std::thread::id threadId);
} // namespace tasks
#endif /* FSFW_OSAL_HOST_TASKHELPERS_H_ */