Home
last modified time | relevance | path

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

/haiku/src/system/libroot/posix/pthread/
H A Dpthread_attr.c95 pthread_attr_getstacksize(const pthread_attr_t *_attr, size_t *stacksize) in pthread_attr_getstacksize() argument
99 if (_attr == NULL || (attr = *_attr) == NULL || stacksize == NULL) in pthread_attr_getstacksize()
102 *stacksize = attr->stack_size; in pthread_attr_getstacksize()
109 pthread_attr_setstacksize(pthread_attr_t *_attr, size_t stacksize) in pthread_attr_setstacksize() argument
118 if (stacksize < PTHREAD_STACK_MIN || stacksize > MAX_USER_STACK_SIZE) in pthread_attr_setstacksize()
121 attr->stack_size = stacksize; in pthread_attr_setstacksize()
207 size_t *stacksize) in pthread_attr_getstack() argument
212 || stacksize == NULL) { in pthread_attr_getstack()
216 *stacksize = attr->stack_size; in pthread_attr_getstack()
225 size_t stacksize) in pthread_attr_setstack() argument
[all …]
/haiku/src/libs/posix_error_mapper/
H A Dpthread_attr.cpp37 (const pthread_attr_t *attr, size_t *stacksize),
39 stacksize));
44 (pthread_attr_t *attr, size_t stacksize),
46 stacksize));
/haiku/src/tests/system/benchmarks/
H A Dctxbench.c124 int stacksize = 65536; in main() local
131 stackbase = malloc(stacksize); in main()
134 stackbase, stacksize); in main()
/haiku/headers/posix/
H A Dpthread.h207 size_t *stacksize);
208 extern int pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize);
223 void **stackaddr, size_t *stacksize);
225 size_t stacksize);