Searched refs:pthreadAttr (Results 1 – 1 of 1) sorted by relevance
70 pthread_attr_t pthreadAttr; in CreateOneThread() local72 int retCode = pthread_attr_init(&pthreadAttr); in CreateOneThread()78 pthread_attr_setscope(&pthreadAttr, PTHREAD_SCOPE_PROCESS); in CreateOneThread()80 pthread_attr_setscope(&pthreadAttr, PTHREAD_SCOPE_SYSTEM); in CreateOneThread()84 pthread_attr_setstacksize(&pthreadAttr, attr->stackSize); in CreateOneThread()87 pthread_attr_setdetachstate(&pthreadAttr, PTHREAD_CREATE_JOINABLE); in CreateOneThread()89 retCode = pthread_create(&(pthreadHandleT->handle), &pthreadAttr, func, param); in CreateOneThread()90 pthread_attr_destroy(&pthreadAttr); in CreateOneThread()