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 | thread_pool.cc | 80 CHECK_PTHREAD_CALL(pthread_create, (&pthread_, &attr, &Callback, this), reason); in ThreadPoolWorker() 85 CHECK_PTHREAD_CALL(pthread_join, (pthread_, nullptr), "thread pool worker shutdown"); in ~ThreadPoolWorker() 92 int result = setpriority(PRIO_PROCESS, pthread_gettid_np(pthread_), priority); in SetPthreadPriority() 103 return getpriority(PRIO_PROCESS, pthread_gettid_np(pthread_)); in GetPthreadPriority()
|
D | signal_catcher.h | 56 pthread_t pthread_ GUARDED_BY(lock_);
|
D | thread_pool.h | 102 pthread_t pthread_; variable
|
/art/dex2oat/ |
D | dex2oat.cc | 309 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_create, (&pthread_, &attr_, &CallBack, this), reason); in WatchDog() 319 CHECK_WATCH_DOG_PTHREAD_CALL(pthread_join, (pthread_, nullptr), reason); in ~WatchDog() 417 pthread_t pthread_; member in art::WatchDog
|