Lines Matching refs:stacksize
273 stack_size = attr->stacksize;
773 attr->stacksize = CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;
784 attr->stacksize = CONFIG_PTHREAD_TASK_STACK_SIZE_DEFAULT;
791 int pthread_attr_getstacksize(const pthread_attr_t *attr, size_t *stacksize)
794 *stacksize = attr->stacksize;
800 int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
802 if (attr && !(stacksize < PTHREAD_STACK_MIN)) {
803 attr->stacksize = stacksize;
1061 attr->stacksize = POSIX_THREAD_STACK_SIZE; in pthread_attr_init()
1244 attr->stacksize = stackSize; in pthread_attr_setstacksize()
1254 attr->stacksize = stackSize; in pthread_attr_setstack()
1266 *stackSize = attr->stacksize; in pthread_attr_getstack()
1277 *stackSize = attr->stacksize; in pthread_attr_getstacksize()
1300 param.uwStackSize = attr->stacksize ? attr->stacksize : POSIX_THREAD_STACK_SIZE; in pthread_create()