2020-07-05 23:11:40 +02:00
|
|
|
#pragma once
|
|
|
|
|
|
2020-09-04 17:23:17 -07:00
|
|
|
#include "FreeRtosNotifiedWorkerThread.h"
|
|
|
|
|
#include "PosixNotifiedWorkerThread.h"
|
2020-07-05 23:11:40 +02:00
|
|
|
|
2020-09-04 17:23:17 -07:00
|
|
|
namespace concurrency
|
2020-07-05 23:11:40 +02:00
|
|
|
{
|
|
|
|
|
|
2020-09-04 17:23:17 -07:00
|
|
|
#ifdef HAS_FREE_RTOS
|
|
|
|
|
typedef FreeRtosNotifiedWorkerThread NotifiedWorkerThread;
|
|
|
|
|
#endif
|
2020-07-05 23:11:40 +02:00
|
|
|
|
2020-09-04 17:23:17 -07:00
|
|
|
#ifdef __unix__
|
|
|
|
|
typedef PosixNotifiedWorkerThread NotifiedWorkerThread;
|
|
|
|
|
#endif
|
2020-07-05 23:11:40 +02:00
|
|
|
|
|
|
|
|
} // namespace concurrency
|