Files
firmware/src/concurrency/BaseThread.cpp

13 lines
172 B
C++
Raw Normal View History

2020-09-04 15:03:22 -07:00
#include "Thread.h"
#include <assert.h>
namespace concurrency
{
void BaseThread::callRun(void *_this)
{
((BaseThread *)_this)->doRun();
}
} // namespace concurrency