Files
firmware/src/concurrency/PosixNotifiedWorkerThread.cpp

19 lines
433 B
C++
Raw Normal View History

2020-09-06 09:24:08 -07:00
#include "PosixNotifiedWorkerThread.h"
2020-09-07 13:03:37 -07:00
#ifdef __unix__
2020-09-06 09:24:08 -07:00
#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"
*/
2020-09-07 13:03:37 -07:00
void PosixNotifiedWorkerThread::block() NOT_IMPLEMENTED("block");
#endif