mirror of
https://github.com/meshtastic/firmware.git
synced 2025-12-18 00:32:38 +00:00
13 lines
172 B
C++
13 lines
172 B
C++
|
|
#include "Thread.h"
|
||
|
|
#include <assert.h>
|
||
|
|
|
||
|
|
namespace concurrency
|
||
|
|
{
|
||
|
|
|
||
|
|
void BaseThread::callRun(void *_this)
|
||
|
|
{
|
||
|
|
((BaseThread *)_this)->doRun();
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace concurrency
|