/external/compiler-rt/test/tsan/ |
fd_stdout_race.cc | 29 pthread_create(&t[0], NULL, Thread1, NULL); 30 pthread_create(&t[1], NULL, Thread2, NULL);
|
fork_multithreaded3.cc | 25 pthread_create(&th1, 0, racer, &x); 26 pthread_create(&th2, 0, racer, &x);
|
inlined_memcpy_race.cc | 23 pthread_create(&t[0], NULL, MemCpyThread, x); 24 pthread_create(&t[1], NULL, MemSetThread, x);
|
inlined_memcpy_race2.cc | 23 pthread_create(&t[0], NULL, MemMoveThread, y); 24 pthread_create(&t[1], NULL, MemSetThread, y);
|
race_on_write.cc | 26 pthread_create(&t[0], NULL, Thread1, NULL); 28 pthread_create(&t[1], NULL, Thread2, NULL);
|
static_init2.cc | 26 pthread_create(&t[0], 0, Thread, 0); 27 pthread_create(&t[1], 0, Thread, 0);
|
static_init3.cc | 41 pthread_create(&t[0], 0, Thread1, 0); 42 pthread_create(&t[1], 0, Thread2, 0);
|
static_init4.cc | 30 pthread_create(&t[0], 0, Thread1, 0); 31 pthread_create(&t[1], 0, Thread1, 0);
|
suppressions_race.cc | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
suppressions_race2.cc | 21 pthread_create(&t[0], NULL, Thread1, NULL); 22 pthread_create(&t[1], NULL, Thread2, NULL);
|
thread_detach2.c | 6 // is not established if pthread_create is followed by pthread_detach. 20 pthread_create(&t, 0, Thread, 0);
|
thread_name.cc | 39 pthread_create(&t[0], NULL, Thread1, NULL); 40 pthread_create(&t[1], NULL, Thread2, NULL);
|
thread_name2.cc | 30 pthread_create(&t[0], 0, Thread1, 0); 31 pthread_create(&t[1], 0, Thread2, 0);
|
tls_race2.cc | 13 pthread_create(&t, 0, Thread2, &Var); 23 pthread_create(&t, 0, Thread, 0);
|
vptr_benign_race.cc | 52 pthread_create(&t[0], NULL, Thread1, NULL); 53 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_harmful_race.cc | 45 pthread_create(&t[0], NULL, Thread1, NULL); 46 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_harmful_race2.cc | 45 pthread_create(&t[0], NULL, Thread1, NULL); 46 pthread_create(&t[1], NULL, Thread2, NULL);
|
vptr_harmful_race3.cc | 46 pthread_create(&t[0], NULL, Thread1, NULL); 47 pthread_create(&t[1], NULL, Thread2, NULL);
|
/external/libcap-ng/libcap-ng-0.7/src/test/ |
thread_test.c | 49 pthread_create(&thread1, NULL, thread1_main, NULL); 50 pthread_create(&thread2, NULL, thread2_main, NULL);
|
/external/ltrace/testsuite/ltrace.torture/ |
vfork-thread.c | 41 pthread_create (&thread, NULL, &routine, NULL); 46 pthread_create (&thread2, NULL, &routine2, NULL);
|
/external/valgrind/drd/tests/ |
annotate_hb_race.c | 35 pthread_create(&tid[0], 0, thread_func, &result[0]); 36 pthread_create(&tid[1], 0, thread_func, &result[1]);
|
annotate_static.cpp | 4 #include <pthread.h> /* pthread_create() */ 40 pthread_create(&tid, 0, thread_func, NULL);
|
rwlock_race.c | 47 pthread_create(&thread1, 0, thread_func, 0); 48 pthread_create(&thread2, 0, thread_func, 0);
|
threaded-fork.c | 25 pthread_create(&childthread, NULL, threadmain, (void *)2); 31 pthread_create(&childthread, NULL, threadmain, 0);
|
/external/valgrind/helgrind/tests/ |
tc05_simple_race.c | 27 if (pthread_create(&child, NULL, child_fn, NULL)) { 28 perror("pthread_create");
|