next up previous contents index
Next: 18.3.9 pthread_attr_setschedpolicy: Set the Up: 18.3 POSIX Threads Reference Previous: 18.3.7 pthread_attr_setguardsize: Set the

18.3.8 pthread_attr_setstacksize: Set the stack size in a thread attributes object

 

SYNOPSIS

#include <oskit/threads/pthread.h>

int pthread_attr_setstacksize(pthread_attr_t *attr, oskit_size_t stacksize);

DESCRIPTION

Set the stack size in a previously initialized threads attribute object, for use with pthread_create.

PARAMETERS

attr
A pointer to the pthread_attr_t object representing the attributes for a thread creation.
stacksize
A reasonable stack size.

RETURNS

Returns zero on success. Returns EINVAL if stacksize is less than PTHREAD_STACK_MIN.

RELATED INFORMATION

pthread_create, pthread_attr_init, pthread_attr_setprio



University of Utah Flux Research Group