portduino WIP
This commit is contained in:
13
src/concurrency/BaseThread.cpp
Normal file
13
src/concurrency/BaseThread.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include "Thread.h"
|
||||
#include "timing.h"
|
||||
#include <assert.h>
|
||||
|
||||
namespace concurrency
|
||||
{
|
||||
|
||||
void BaseThread::callRun(void *_this)
|
||||
{
|
||||
((BaseThread *)_this)->doRun();
|
||||
}
|
||||
|
||||
} // namespace concurrency
|
||||
Reference in New Issue
Block a user