Symbol: pthread_attr_t
include/pthread.h
139
int pthread_attr_destroy(pthread_attr_t *);
include/pthread.h
140
int pthread_attr_getguardsize(const pthread_attr_t * __restrict,
include/pthread.h
142
int pthread_attr_getstack(const pthread_attr_t * __restrict,
include/pthread.h
144
int pthread_attr_getstacksize(const pthread_attr_t * __restrict,
include/pthread.h
147
int pthread_attr_getstackaddr(const pthread_attr_t *, void **);
include/pthread.h
149
int pthread_attr_getdetachstate(const pthread_attr_t *, int *);
include/pthread.h
150
int pthread_attr_init(pthread_attr_t *) __nonnull(1);
include/pthread.h
151
int pthread_attr_setguardsize(pthread_attr_t *, size_t);
include/pthread.h
153
int pthread_attr_setstackaddr(pthread_attr_t *, void *);
include/pthread.h
155
int pthread_attr_setstacksize(pthread_attr_t *, size_t);
include/pthread.h
156
int pthread_attr_setstack(pthread_attr_t *, void *, size_t);
include/pthread.h
157
int pthread_attr_setdetachstate(pthread_attr_t *, int);
include/pthread.h
193
const pthread_attr_t * __restrict, void *(*) (void *),
include/pthread.h
275
int pthread_attr_getinheritsched(const pthread_attr_t * __restrict,
include/pthread.h
277
int pthread_attr_getschedparam(const pthread_attr_t * __restrict,
include/pthread.h
279
int pthread_attr_getschedpolicy(const pthread_attr_t * __restrict,
include/pthread.h
281
int pthread_attr_getscope(const pthread_attr_t * __restrict,
include/pthread.h
283
int pthread_attr_setinheritsched(pthread_attr_t *, int);
include/pthread.h
284
int pthread_attr_setschedparam(pthread_attr_t * __restrict,
include/pthread.h
286
int pthread_attr_setschedpolicy(pthread_attr_t *, int);
include/pthread.h
287
int pthread_attr_setscope(pthread_attr_t *, int);
include/pthread_np.h
56
int pthread_attr_get_np(pthread_t, pthread_attr_t *);
include/pthread_np.h
57
int pthread_attr_getaffinity_np(const pthread_attr_t *, size_t, cpu_set_t *);
include/pthread_np.h
58
int pthread_attr_setaffinity_np(pthread_attr_t *, size_t, const cpu_set_t *);
include/pthread_np.h
59
int pthread_attr_setcreatesuspend_np(pthread_attr_t *);
include/pthread_np.h
61
int pthread_getattr_np(pthread_t, pthread_attr_t *);
lib/libthread_xu/thread/thr_attr.c
130
_pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate)
lib/libthread_xu/thread/thr_attr.c
153
_pthread_attr_getguardsize(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
172
_pthread_attr_getinheritsched(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
188
_pthread_attr_getschedparam(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
204
_pthread_attr_getschedpolicy(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
220
_pthread_attr_getscope(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
239
_pthread_attr_getstack(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
261
_pthread_attr_getstackaddr(const pthread_attr_t *attr, void **stackaddr)
lib/libthread_xu/thread/thr_attr.c
279
_pthread_attr_getstacksize(const pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
298
_pthread_attr_init(pthread_attr_t *attr)
lib/libthread_xu/thread/thr_attr.c
301
pthread_attr_t pattr;
lib/libthread_xu/thread/thr_attr.c
323
_pthread_attr_setaffinity_np(pthread_attr_t *attr, size_t cpusetsize,
lib/libthread_xu/thread/thr_attr.c
353
_pthread_attr_setcreatesuspend_np(pthread_attr_t *attr)
lib/libthread_xu/thread/thr_attr.c
369
_pthread_attr_setdetachstate(pthread_attr_t *attr, int detachstate)
lib/libthread_xu/thread/thr_attr.c
394
_pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize)
lib/libthread_xu/thread/thr_attr.c
412
_pthread_attr_setinheritsched(pthread_attr_t *attr, int sched_inherit)
lib/libthread_xu/thread/thr_attr.c
430
_pthread_attr_setschedparam(pthread_attr_t * __restrict attr,
lib/libthread_xu/thread/thr_attr.c
461
_pthread_attr_setschedpolicy(pthread_attr_t *attr, int pol)
lib/libthread_xu/thread/thr_attr.c
478
_pthread_attr_setscope(pthread_attr_t *attr, int contentionscope)
lib/libthread_xu/thread/thr_attr.c
48
_pthread_attr_destroy(pthread_attr_t *attr)
lib/libthread_xu/thread/thr_attr.c
499
_pthread_attr_setstack(pthread_attr_t *attr, void *stackaddr,
lib/libthread_xu/thread/thr_attr.c
520
_pthread_attr_setstackaddr(pthread_attr_t *attr, void *stackaddr)
lib/libthread_xu/thread/thr_attr.c
538
_pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
lib/libthread_xu/thread/thr_attr.c
556
_pthread_getattr_np(pthread_t thread, pthread_attr_t *attr)
lib/libthread_xu/thread/thr_attr.c
73
_pthread_attr_get_np(pthread_t pid, pthread_attr_t *dst)
lib/libthread_xu/thread/thr_attr.c
97
_pthread_attr_getaffinity_np(const pthread_attr_t *attr, size_t cpusetsize,
lib/libthread_xu/thread/thr_create.c
200
create_stack(pthread_attr_t pattr)
lib/libthread_xu/thread/thr_create.c
47
static int create_stack(pthread_attr_t pattr);
lib/libthread_xu/thread/thr_create.c
52
const pthread_attr_t * __restrict attr, void *(*start_routine) (void *),
lib/libthread_xu/thread/thr_private.h
688
int _thr_stack_alloc(pthread_attr_t);
lib/libthread_xu/thread/thr_private.h
689
void _thr_stack_free(pthread_attr_t);
lib/libthread_xu/thread/thr_stack.c
203
_thr_stack_free(pthread_attr_t attr)
lib/libthread_xu/thread/thr_stack.c
85
_thr_stack_alloc(pthread_attr_t attr)
sys/platform/vkernel64/platform/cothread.c
84
pthread_attr_t attr;
sys/platform/vkernel64/x86_64/mp.c
393
pthread_attr_t attr;
sys/sys/signal.h
184
pthread_attr_t *__sigev_notify_attributes;
test/interbench/interbench.c
472
void create_pthread(pthread_t * thread, pthread_attr_t * attr,
test/libpthread/mutex_d.c
1436
pthread_attr_t pattr;
test/libpthread/mutex_d.c
645
pthread_attr_t pattr;
test/libpthread/mutex_d.c
739
pthread_attr_t pattr;
test/libpthread/sigsuspend_d.c
153
pthread_attr_t pattr;
test/libpthread/sigwait_d.c
113
pthread_attr_t pattr;
tools/tools/netrate/kq_sendrecv/kq_sendcli/kq_sendcli.c
289
pthread_attr_t attr;
usr.bin/sort/file.c
1562
pthread_attr_t attr;
usr.bin/sort/radixsort.c
615
pthread_attr_t attr;