th                204 opal/mca/event/libevent2022/libevent/event_iocp.c 		ev_uintptr_t th = _beginthread(loop, 0, port);
th                205 opal/mca/event/libevent2022/libevent/event_iocp.c 		if (th == (ev_uintptr_t)-1)
th                207 opal/mca/event/libevent2022/libevent/event_iocp.c 		port->threads[i] = (HANDLE)th;
th                 72 opal/mca/event/libevent2022/libevent/test/regress_thread.c #define THREAD_JOIN(th) pthread_join(th, NULL)
th                 81 opal/mca/event/libevent2022/libevent/test/regress_thread.c #define THREAD_JOIN(th) WaitForSingleObject(th, INFINITE)
th                 98 test/asm/atomic_cmpset.c     pthread_t *th;
th                303 test/asm/atomic_cmpset.c     th = (pthread_t *) malloc(nthreads * sizeof(pthread_t));
th                304 test/asm/atomic_cmpset.c     if (!th) {
th                309 test/asm/atomic_cmpset.c         if (pthread_create(&th[tid], NULL, thread_main, (void *) (unsigned long) tid) != 0) {
th                320 test/asm/atomic_cmpset.c         if (pthread_join(th[tid], &thread_return) != 0) {
th                325 test/asm/atomic_cmpset.c     free(th);
th                 62 test/asm/atomic_math.c     pthread_t *th;
th                 65 test/asm/atomic_math.c     th = (pthread_t *) malloc(thr_count * sizeof(pthread_t));
th                 66 test/asm/atomic_math.c     if (!th) {
th                 78 test/asm/atomic_math.c         if (pthread_create(&th[tid], NULL, atomic_math_test,
th                 89 test/asm/atomic_math.c         if (pthread_join(th[tid], &thread_return) != 0) {
th                 94 test/asm/atomic_math.c     free(th);
th                 56 test/asm/atomic_spinlock.c     pthread_t *th;
th                 60 test/asm/atomic_spinlock.c     th = (pthread_t *) malloc(thr_count * sizeof(pthread_t));
th                 61 test/asm/atomic_spinlock.c     if (!th) { perror("malloc"); exit(EXIT_FAILURE); }
th                 63 test/asm/atomic_spinlock.c     if (!th) { perror("malloc"); exit(EXIT_FAILURE); }
th                 70 test/asm/atomic_spinlock.c         if (pthread_create(&th[tid], NULL, atomic_spinlock_start, (void *) &(data[tid])) != 0) {
th                 80 test/asm/atomic_spinlock.c         if (pthread_join(th[tid], &thread_return) != 0) {
th                 88 test/asm/atomic_spinlock.c     free(th);