Home
last modified time | relevance | path

Searched refs:thread_attributes (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/bionic/
Dposix_timers.cpp138 pthread_attr_t thread_attributes; in timer_create() local
140 pthread_attr_init(&thread_attributes); in timer_create()
142 thread_attributes = *reinterpret_cast<pthread_attr_t*>(evp->sigev_notify_attributes); in timer_create()
144 pthread_attr_setdetachstate(&thread_attributes, PTHREAD_CREATE_DETACHED); in timer_create()
155 int rc = pthread_create(&timer->callback_thread, &thread_attributes, __timer_thread_start, timer); in timer_create()