mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-21 10:12:50 +00:00
portduino now links!
This commit is contained in:
14
src/concurrency/PosixNotifiedWorkerThread.cpp
Normal file
14
src/concurrency/PosixNotifiedWorkerThread.cpp
Normal 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");
|
||||
Reference in New Issue
Block a user