Home
last modified time | relevance | path

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

/CTR-SDK-1.0.0/CTR_SDK/sources/libraries/os/
Dos_Thread.cpp292 Thread* pThread = new (p) Thread(); in nnosThreadInitializeAndStart() local
294 pThread->Start(f, param, stack, priority, coreNo); in nnosThreadInitializeAndStart()
299 Thread* pThread = new (p) Thread(); in nnosThreadTryInitializeAndStart() local
301 Result result = pThread->TryStart(f, param, stack, priority, coreNo); in nnosThreadTryInitializeAndStart()
307 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadFinalize() local
308 pThread->~Thread(); in nnosThreadFinalize()
313 Thread* pThread = reinterpret_cast<Thread*>(p); in nnosThreadJoin() local
314 pThread->Join(); in nnosThreadJoin()
334 const Thread* pThread = reinterpret_cast<const Thread*>(p); in nnosThreadGetPriority() local
335 return pThread->GetPriority(); in nnosThreadGetPriority()
[all …]