fsfw/src/fsfw/osal/host/taskHelpers.h
Ulrich Mohr dcc28622a5
Some checks failed
fsfw/fsfw/pipeline/head There was a failure building this commit
windows compiles, some unittests give exceptions
2023-01-25 23:54:46 +01:00

17 lines
380 B
C++

#ifndef FSFW_OSAL_HOST_TASKHELPERS_H_
#define FSFW_OSAL_HOST_TASKHELPERS_H_
#include <fsfw/returnvalues/returnvalue.h>
#include <thread>
#include <string>
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_ */