Home
last modified time | relevance | path

Searched refs:pThread (Results 1 – 1 of 1) sorted by relevance

/CTR-SDK-0.13.2/sources/libraries/os/
Dos_Thread.cpp291 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart() local
293 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
298 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart() local
300 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
306 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize() local
307 pThread->~Thread(); in nnosThreadFinalize()
312 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin() local
313 pThread->Join(); in nnosThreadJoin()
333 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority() local
334 return pThread->GetPriority(); in nnosThreadGetPriority()
[all …]