Home
last modified time | relevance | path

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

/system/core/libutils/
DThreads.cpp208 struct threadDetails* pDetails = (struct threadDetails*) vDetails; in threadIntermediary() local
211 result = (*(pDetails->func))(pDetails->arg); in threadIntermediary()
213 delete pDetails; in threadIntermediary()
225 struct threadDetails* pDetails = new threadDetails; // must be on heap in doCreateThread() local
228 pDetails->func = fn; in doCreateThread()
229 pDetails->arg = arg; in doCreateThread()
232 hThread = (HANDLE) _beginthreadex(NULL, 0, threadIntermediary, pDetails, 0, in doCreateThread()
238 (void*) pDetails, 0, (DWORD*) &thrdaddr); in doCreateThread()