/external/valgrind/helgrind/tests/ |
hg01_all_ok.c | 41 pthread_create(&a, NULL, th, NULL); 42 pthread_create(&b, NULL, th, NULL);
|
hg02_deadlock.c | 35 pthread_create(&a, NULL, t1, NULL); 36 pthread_create(&b, NULL, t2, NULL);
|
tc01_simple_race.c | 22 if (pthread_create(&child, NULL, child_fn, NULL)) { 23 perror("pthread_create");
|
tc02_simple_tls.c | 25 if (pthread_create(&child, NULL, child_fn, NULL)) { 26 perror("pthread_create");
|
filter_stderr_solaris | 3 # Replace pthread_create with pthread_create@* which is expected on Linux 4 s/pthread_create \(hg_intercepts.c:/pthread_create@* \(hg_intercepts.c:/g;
|
/external/valgrind/none/tests/ |
pth_stackalign.c | 21 if ((e = pthread_create(&t, NULL, thread_main, NULL)) != 0) 23 fprintf(stderr, "pthread_create: %s\n", strerror(e));
|
/external/valgrind/none/tests/solaris/ |
threads_exitall.c | 24 if (pthread_create(&thread, NULL, thread_proc, NULL)) { 25 perror("pthread_create");
|
/system/extras/simpleperf/runtest/ |
function_pthread.cpp | 21 int ret = pthread_create(&thread, nullptr, ChildThreadFunction, nullptr); 23 fprintf(stderr, "pthread_create failed: %s\n", strerror(ret));
|
/external/compiler-rt/test/tsan/ |
fd_tid_recycled.cc | 31 pthread_create(&t_create, NULL, ThreadCreatePipe, NULL); 36 pthread_create(&t_dummy, NULL, ThreadDummy, NULL); 41 pthread_create(&t[0], NULL, ThreadWrite, NULL); 42 pthread_create(&t[1], NULL, ThreadClose, NULL);
|
race_on_heap.cc | 28 pthread_create(&t[0], 0, AllocThread, 0); 31 pthread_create(&t[0], 0, Thread1, (char*)p + 16); 32 pthread_create(&t[1], 0, Thread2, (char*)p + 16); 47 // CHECK: #0 pthread_create
|
aligned_vs_unaligned_race.cc | 27 pthread_create(&t[0], NULL, Thread1, NULL); 28 pthread_create(&t[1], NULL, Thread2, NULL);
|
blacklist.cc | 22 pthread_create(&t[0], NULL, Thread1, NULL); 23 pthread_create(&t[1], NULL, Blacklisted_Thread2, NULL);
|
fd_close_norace.cc | 24 pthread_create(&t[0], NULL, Thread1, NULL); 25 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_dup_norace.cc | 27 pthread_create(&t[0], NULL, Thread1, NULL); 28 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_location.cc | 23 pthread_create(&t[0], NULL, Thread1, NULL); 24 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_pipe_norace.cc | 26 pthread_create(&t[0], NULL, Thread1, NULL); 27 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_pipe_race.cc | 23 pthread_create(&t[0], NULL, Thread1, NULL); 24 pthread_create(&t[1], NULL, Thread2, NULL);
|
fd_socketpair_norace.cc | 30 pthread_create(&t[0], NULL, Thread1, NULL); 31 pthread_create(&t[1], NULL, Thread2, NULL);
|
/external/libcxx/cmake/ |
config-ix.cmake | 15 check_library_exists(pthread pthread_create "" LIBCXX_HAS_PTHREAD_LIB)
|
/prebuilts/go/darwin-x86/src/runtime/cgo/ |
gcc_openbsd_386.c | 71 // Locate symbol for the system pthread_create function. 77 sys_pthread_create = dlsym(handle, "pthread_create"); 79 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror()); 88 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function 93 // we must initialize our wrapper in pthread_create, because it is valid to call 94 // pthread_create in a static constructor, and in fact, our test for issue 9456 97 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 125 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 154 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
|
gcc_openbsd_amd64.c | 71 // Locate symbol for the system pthread_create function. 77 sys_pthread_create = dlsym(handle, "pthread_create"); 79 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror()); 88 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function 93 // we must initialize our wrapper in pthread_create, because it is valid to call 94 // pthread_create in a static constructor, and in fact, our test for issue 9456 97 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 125 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 155 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
|
/prebuilts/go/linux-x86/src/runtime/cgo/ |
gcc_openbsd_386.c | 71 // Locate symbol for the system pthread_create function. 77 sys_pthread_create = dlsym(handle, "pthread_create"); 79 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror()); 88 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function 93 // we must initialize our wrapper in pthread_create, because it is valid to call 94 // pthread_create in a static constructor, and in fact, our test for issue 9456 97 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 125 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 154 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
|
gcc_openbsd_amd64.c | 71 // Locate symbol for the system pthread_create function. 77 sys_pthread_create = dlsym(handle, "pthread_create"); 79 fprintf(stderr, "runtime/cgo: dlsym failed to find pthread_create: %s\n", dlerror()); 88 pthread_create(pthread_t *thread, const pthread_attr_t *attr, function 93 // we must initialize our wrapper in pthread_create, because it is valid to call 94 // pthread_create in a static constructor, and in fact, our test for issue 9456 97 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 125 fprintf(stderr, "runtime/cgo: failed to initialize pthread_create wrapper\n"); 155 fprintf(stderr, "runtime/cgo: pthread_create failed: %s\n", strerror(err));
|
/external/compiler-rt/lib/asan/tests/ |
asan_racy_double_free_test.cc | 28 pthread_create(&t[0], 0, Thread1, 0); 29 pthread_create(&t[1], 0, Thread2, 0);
|
/external/compiler-rt/test/asan/TestCases/Linux/ |
unpoison_tls.cc | 30 assert(0 == pthread_create(&p, 0, first, 0)); 32 assert(0 == pthread_create(&p, 0, second, 0));
|