reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

examples/ParallelJIT/ParallelJIT.cpp
  280   int result = pthread_create( &add1Thread, nullptr, callFunc, &add1 );
  287   result = pthread_create( &fibThread1, nullptr, callFunc, &fib1 );
  294   result = pthread_create( &fibThread2, nullptr, callFunc, &fib2 );
lib/Support/Unix/Threading.inc
   84   if ((errnum = ::pthread_create(&Thread, &Attr, ThreadFunc, Arg)) != 0)
projects/compiler-rt/lib/dfsan/dfsan_custom.cpp
  379   int rv = pthread_create(thread, attr, pthread_create_cb, (void *)pci);
projects/openmp/runtime/src/z_Linux_util.cpp
  865       pthread_create(&handle, &thread_attr, __kmp_launch_worker, (void *)th);
tools/lldb/source/Host/common/ThreadLauncher.cpp
   65       ::pthread_create(&thread, thread_attr_ptr,
unittests/Support/ManagedStatic.cpp
   51   pthread_create(&t1, &a1, test1::helper, nullptr);
   52   pthread_create(&t2, &a2, test1::helper, nullptr);
usr/include/c++/7.4.0/thread
  122 	auto __depend = reinterpret_cast<void(*)()>(&pthread_create);
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/gthr-default.h
  105 __gthrw(pthread_create)