Searched refs:pthread_ (Results 1 – 5 of 5) sorted by relevance
/art/runtime/ |
D | signal_catcher.cc | 79 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, nullptr, &Run, this), "signal catcher thread"); in SignalCatcher() 92 CHECK_PTHREAD_CALL(pthread_kill, (pthread_, SIGQUIT), "signal catcher shutdown"); in ~SignalCatcher() 93 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "signal catcher shutdown"); in ~SignalCatcher()
|
D | signal_catcher.h | 56 pthread_t pthread_ GUARDED_BY(lock_);
|
D | thread_pool.cc | 66 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 71 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker() 78 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority); in SetPthreadPriority()
|
D | thread_pool.h | 99 pthread_t pthread_; variable
|
/art/dex2oat/ |
D | dex2oat.cc | 590 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 600 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog() 698 pthread_t pthread_; member in art::WatchDog
|