portduino now links!

This commit is contained in:
geeksville
2020-09-06 09:24:08 -07:00
parent fefd3d78f3
commit b8d39845cf
6 changed files with 42 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
#include "PosixNotifiedWorkerThread.h"
#include <Utility.h>
using namespace concurrency;
/**
* Notify this thread so it can run
*/
void PosixNotifiedWorkerThread::notify(uint32_t v, eNotifyAction action) NOT_IMPLEMENTED("notify");
/**
* A method that should block execution - either waiting ona queue/mutex or a "task notification"
*/
void PosixNotifiedWorkerThread::block() NOT_IMPLEMENTED("block");