![]() |
SuperTinyKernel™ RTOS 1.08.x
Lightweight, high-performance, deterministic, bare-metal C++ RTOS for resource-constrained embedded systems. MIT Open Source License.
|
Thread creation attributes. More...
#include <stk_c_pthread.h>
Public Attributes | |
| size_t | __stack_bytes |
| stk_word_t * | __ext_stack |
| int | __detachstate |
Thread creation attributes.
Definition at line 219 of file stk_c_pthread.h.
| int pthread_attr_t::__detachstate |
PTHREAD_CREATE_JOINABLE / _DETACHED.
Definition at line 223 of file stk_c_pthread.h.
Referenced by pthread_attr_getdetachstate(), pthread_attr_init(), pthread_attr_setdetachstate(), and pthread_create().
| stk_word_t* pthread_attr_t::__ext_stack |
Caller-supplied stack, or NULL.
Definition at line 222 of file stk_c_pthread.h.
Referenced by pthread_attr_getstack(), pthread_attr_init(), pthread_attr_setstack(), and pthread_create().
| size_t pthread_attr_t::__stack_bytes |
0 = use STK_C_PTHREAD_DEFAULT_STACK_WORDS.
Definition at line 221 of file stk_c_pthread.h.
Referenced by pthread_attr_getstack(), pthread_attr_getstacksize(), pthread_attr_init(), pthread_attr_setstack(), pthread_attr_setstacksize(), and pthread_create().