mirror of
https://github.com/meshtastic/firmware.git
synced 2025-04-28 10:42:08 +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
|