Home
last modified time | relevance | path

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

/CTR-SDK-2.3.4/CTR_SDK/sources/libraries/os/
Dos_Thread.cpp300 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart() local
302 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
307 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart() local
309 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
315 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize() local
316 pThread->~Thread(); in nnosThreadFinalize()
321 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin() local
322 pThread->Join(); in nnosThreadJoin()
342 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority() local
343 return pThread->GetPriority(); in nnosThreadGetPriority()
[all …]