mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-29 19:03:52 +00:00
18 lines
316 B
C++
18 lines
316 B
C++
#pragma once
|
|
|
|
#include "FreeRtosNotifiedWorkerThread.h"
|
|
#include "PosixNotifiedWorkerThread.h"
|
|
|
|
namespace concurrency
|
|
{
|
|
|
|
#ifdef HAS_FREE_RTOS
|
|
typedef FreeRtosNotifiedWorkerThread NotifiedWorkerThread;
|
|
#endif
|
|
|
|
#ifdef __unix__
|
|
typedef PosixNotifiedWorkerThread NotifiedWorkerThread;
|
|
#endif
|
|
|
|
} // namespace concurrency
|