Robin Mueller
2aac3c67ee
Some checks failed
EIVE/eive-obsw/pipeline/head There was a failure building this commit
15 lines
210 B
C++
15 lines
210 B
C++
#ifndef MISSION_TRACE_H_
|
|
#define MISSION_TRACE_H_
|
|
|
|
#include <cstdint>
|
|
|
|
#define OBSW_THREAD_TRACING 1
|
|
|
|
namespace trace {
|
|
|
|
void threadTrace(uint32_t& counter, const char* name);
|
|
|
|
}
|
|
|
|
#endif /* MISSION_TRACE_H_ */
|