Lines Matching refs:tid
1206 pthread_t tid;
1208 int ret = pthread_create(&tid, NULL, ThreadFunc1, (void*)sigNo);
1211 ret = pthread_kill(tid, sigNo);
1213 ret = pthread_join(tid, NULL);
1233 pthread_t tid;
1234 int ret = pthread_create(&tid, NULL, ThreadFunc2, &mainThread);
1241 ret = pthread_join(tid, &threadExitCode);
1270 pthread_t tid;
1271 int ret = pthread_create(&tid, NULL, ThreadFuncForSigmask1, (void*)1);
1273 ret = pthread_join(tid, NULL);
1285 pthread_t tid;
1286 int ret = pthread_create(&tid, NULL, ThreadFuncForSigmask1, (void*)2);
1289 ret = pthread_join(tid, NULL);
1311 pthread_t tid;
1312 int ret = pthread_create(&tid, NULL, ThreadFuncForSigmask2, NULL);
1316 ret = pthread_join(tid, &threadExitCode);