fix nrf52 build

This commit is contained in:
geeksville
2020-09-07 13:03:37 -07:00
parent f8bb6bbcb4
commit f3d38d84c9
3 changed files with 16 additions and 8 deletions

View File

@@ -1,4 +1,7 @@
#include "PosixNotifiedWorkerThread.h"
#ifdef __unix__
#include <Utility.h>
using namespace concurrency;
@@ -11,4 +14,6 @@ void PosixNotifiedWorkerThread::notify(uint32_t v, eNotifyAction action) NOT_IMP
/**
* A method that should block execution - either waiting ona queue/mutex or a "task notification"
*/
void PosixNotifiedWorkerThread::block() NOT_IMPLEMENTED("block");
void PosixNotifiedWorkerThread::block() NOT_IMPLEMENTED("block");
#endif