Searched refs:stacksize (Results 1 – 4 of 4) sorted by relevance
/support/ |
A D | xpthread_attr_setstacksize.c | 22 xpthread_attr_setstacksize (pthread_attr_t *attr, size_t stacksize) in xpthread_attr_setstacksize() argument 25 pthread_attr_setstacksize (attr, stacksize)); in xpthread_attr_setstacksize()
|
A D | xpthread_attr_setstack.c | 22 xpthread_attr_setstack (pthread_attr_t *attr, void *stackaddr, size_t stacksize) in xpthread_attr_setstack() argument 25 pthread_attr_setstack (attr, stackaddr, stacksize)); in xpthread_attr_setstack()
|
A D | support_stack_alloc.c | 45 size_t stacksize = roundup (size + sysconf (_SC_SIGSTKSZ), in support_stack_alloc() local 56 size_t guardsize = roundup (MAX (2 * stacksize, 1024 * 1024), pagesize); in support_stack_alloc() 57 size_t alloc_size = guardsize + stacksize + guardsize; in support_stack_alloc() 72 xmprotect (alloc_base + guardsize, stacksize, prot); in support_stack_alloc() 73 memset (alloc_base + guardsize, 0xA5, stacksize); in support_stack_alloc() 74 return (struct support_stack) { alloc_base + guardsize, stacksize, guardsize }; in support_stack_alloc()
|
A D | xthread.h | 81 size_t stacksize); 83 size_t stacksize);
|
Completed in 7 milliseconds