Home
last modified time | relevance | path

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

/external/qemu/distrib/sdl-1.2.12/src/cdrom/macosx/
DAudioFileReaderThread.c157 pthread_attr_t theThreadAttrs; in FileReaderThread_StartFixedPriorityThread() local
160 OSStatus result = pthread_attr_init(&theThreadAttrs); in FileReaderThread_StartFixedPriorityThread()
163 result = pthread_attr_setdetachstate(&theThreadAttrs, PTHREAD_CREATE_DETACHED); in FileReaderThread_StartFixedPriorityThread()
166 result = pthread_create (&pThread, &theThreadAttrs, frt->DiskReaderEntry, frt); in FileReaderThread_StartFixedPriorityThread()
169 pthread_attr_destroy(&theThreadAttrs); in FileReaderThread_StartFixedPriorityThread()