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

References

examples/ParallelJIT/ParallelJIT.cpp
  279   pthread_t add1Thread;
  286   pthread_t fibThread1;
  293   pthread_t fibThread2;
lib/Support/Unix/Threading.inc
   83   pthread_t Thread;
projects/compiler-rt/lib/dfsan/dfsan_custom.cpp
  368     pthread_t *thread, const pthread_attr_t *attr,
projects/compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.cpp
  183   unsigned pthread_t_sz = sizeof(pthread_t);
projects/openmp/runtime/src/kmp.h
 1360 typedef pthread_t kmp_thread_t;
projects/openmp/runtime/src/thirdparty/ittnotify/ittnotify_config.h
  243 typedef pthread_t         TIDT;
  365 pthread_t pthread_self(void) __attribute__((weak));
projects/openmp/runtime/src/z_Linux_util.cpp
  774   pthread_t handle;
tools/lldb/include/lldb/lldb-types.h
   58 typedef pthread_t thread_t; // Host thread type
unittests/Support/ManagedStatic.cpp
   50   pthread_t t1, t2;
usr/include/pthread.h
  234 extern int pthread_create (pthread_t *__restrict __newthread,
  251 extern int pthread_join (pthread_t __th, void **__thread_return);
  256 extern int pthread_tryjoin_np (pthread_t __th, void **__thread_return) __THROW;
  264 extern int pthread_timedjoin_np (pthread_t __th, void **__thread_return,
  272 extern int pthread_detach (pthread_t __th) __THROW;
  276 extern pthread_t pthread_self (void) __THROW __attribute__ ((__const__));
  279 extern int pthread_equal (pthread_t __thread1, pthread_t __thread2)
  279 extern int pthread_equal (pthread_t __thread1, pthread_t __thread2)
  421 extern int pthread_getattr_np (pthread_t __th, pthread_attr_t *__attr)
  430 extern int pthread_setschedparam (pthread_t __target_thread, int __policy,
  435 extern int pthread_getschedparam (pthread_t __target_thread,
  441 extern int pthread_setschedprio (pthread_t __target_thread, int __prio)
  447 extern int pthread_getname_np (pthread_t __target_thread, char *__buf,
  452 extern int pthread_setname_np (pthread_t __target_thread, const char *__name)
  475 extern int pthread_setaffinity_np (pthread_t __th, size_t __cpusetsize,
  480 extern int pthread_getaffinity_np (pthread_t __th, size_t __cpusetsize,
  514 extern int pthread_cancel (pthread_t __th);
 1129 extern int pthread_getcpuclockid (pthread_t __thread_id,
usr/include/x86_64-linux-gnu/bits/sigthread.h
   36 extern int pthread_kill (pthread_t __threadid, int __signo) __THROW;
   40 extern int pthread_sigqueue (pthread_t __threadid, int __signo,
usr/include/x86_64-linux-gnu/c++/7.4.0/bits/gthr-default.h
   47 typedef pthread_t __gthread_t;
utils/unittest/googletest/include/gtest/internal/gtest-port.h
 1642   pthread_t thread_;  // The native thread object.
 1973   pthread_t owner_;  // The thread holding the mutex.