firmware/src/concurrency/BaseThread.cpp
2020-09-05 12:34:48 -07:00

13 lines
172 B
C++

#include "Thread.h"
#include <assert.h>
namespace concurrency
{
void BaseThread::callRun(void *_this)
{
((BaseThread *)_this)->doRun();
}
} // namespace concurrency