HomeSort by relevance Sort by last modified time
    Searched full:pthread_join (Results 126 - 150 of 803) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/valgrind/main/none/tests/x86/
yield.c 73 pthread_join(a, NULL);
74 pthread_join(b, NULL);
  /external/chromium_org/native_client_sdk/src/libraries/third_party/pthreads-win32/
pthread_join.c 2 * pthread_join.c
51 pthread_join (pthread_t thread, void **value_ptr) function
126 * Pthread_join is a cancelation point.
143 * pthread_join() or pthread_detach() specifying the same
157 } /* pthread_join */
  /external/compiler-rt/lib/tsan/tests/rtl/
tsan_posix.cc 66 EXPECT_EQ(pthread_join(th[0], 0), 0);
68 EXPECT_EQ(pthread_join(th[1], 0), 0);
69 EXPECT_EQ(pthread_join(th[2], 0), 0);
87 EXPECT_EQ(pthread_join(th[i], 0), 0);
143 EXPECT_EQ(pthread_join(th, 0), 0);
tsan_thread.cc 53 pthread_join(threads[i % kAlive], 0);
57 pthread_join(threads[i], 0);
  /external/compiler-rt/lib/asan/tests/
asan_test_utils.h 52 // Check that pthread_create/pthread_join return success.
54 #define PTHREAD_JOIN(a, b) ASSERT_EQ(0, pthread_join(a, b))
asan_mac_test.cc 31 PTHREAD_JOIN(child, NULL); // Shouldn't be reached.
57 PTHREAD_JOIN(th1, NULL);
59 PTHREAD_JOIN(th2, NULL);
182 PTHREAD_JOIN(workers[i], 0);
184 PTHREAD_JOIN(forker, 0);
201 PTHREAD_JOIN(th, NULL);
  /external/compiler-rt/lib/tsan/tests/unit/
tsan_mutex_test.cc 103 pthread_join(threads[i], 0);
113 pthread_join(threads[i], 0);
123 pthread_join(threads[i], 0);
  /external/valgrind/main/none/tests/
thread-exits.c 78 ret = pthread_join(t, NULL);
80 printf("pthread_join failed: %s\n", strerror(ret));
130 pthread_join(pth, NULL);
pth_atfork1.c 85 pthread_join (th, &res);
88 error(EXIT_FAILURE, 0, "pthread_join res != 0" );
  /external/compiler-rt/lib/tsan/lit_tests/
simple_stack.c 45 pthread_join(t[0], NULL);
46 pthread_join(t[1], NULL);
atomic_norace.cc 58 pthread_join(t, 0);
fd_socket_connect_norace.cc 38 pthread_join(t, 0);
fd_socket_norace.cc 47 pthread_join(t, 0);
free_race.c 35 pthread_join(t, NULL);
java_lock_rec.cc 47 pthread_join(th, 0);
  /external/valgrind/main/drd/tests/
pth_inconsistent_cond_wait.c 137 PTH_CALL(pthread_join(tid1, 0));
138 PTH_CALL(pthread_join(tid2, 0));
  /external/valgrind/main/helgrind/tests/
locked_vs_unlocked2.c 64 r= pthread_join(child1, NULL); assert(!r);
65 r= pthread_join(child2, NULL); assert(!r);
tc21_pthonce.c 31 * exit of the threads using the pthread_join() operation.
91 pthread_join(threads[i], NULL);
  /hardware/samsung_slsi/exynos5/exynos_omx/openmax/exynos_omx/osal/
Exynos_OSAL_Thread.c 119 if (pthread_join(thread->pthread, NULL) != 0) {
142 pthread_join(thread->pthread, NULL);
  /external/chromium_org/ppapi/native_client/src/untrusted/irt_stub/
thread_creator.c 30 return pthread_join((pthread_t) tid, NULL);
  /external/compiler-rt/lib/asan/lit_tests/TestCases/
init-order-dlopen.cc 48 pthread_join(p, 0);
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
disabler_in_tsd_destructor.cc 35 res = pthread_join(thread_id, 0);
fork_threaded.cc 24 pthread_join(tid, 0);
  /external/compiler-rt/lib/tsan/benchmarks/
mini_bench_local.cc 44 pthread_join(t[i], 0);
mini_bench_shared.cc 46 pthread_join(t[i], 0);

Completed in 272 milliseconds

1 2 3 4 56 7 8 91011>>