Searched refs:attrp (Results 1 - 2 of 2) sorted by relevance

/seL4-camkes-master/projects/musllibc/src/thread/
H A Dpthread_setattr_default_np.c7 int pthread_setattr_default_np(const pthread_attr_t *attrp) argument
10 pthread_attr_t tmp = *attrp, zero = { 0 };
17 if (attrp->_a_stacksize >= __default_stacksize)
18 __default_stacksize = attrp->_a_stacksize;
19 if (attrp->_a_guardsize >= __default_guardsize)
20 __default_guardsize = attrp->_a_guardsize;
26 int pthread_getattr_default_np(pthread_attr_t *attrp) argument
29 *attrp = (pthread_attr_t) {
H A Dpthread_create.c181 int __pthread_create(pthread_t *restrict res, const pthread_attr_t *restrict attrp, void *(*entry)(void *), void *restrict arg) argument
183 int ret, c11 = (attrp == __ATTRP_C11_THREAD);
206 if (attrp && !c11) attr = *attrp;
209 if (!attrp || c11) {

Completed in 98 milliseconds