diff options
Diffstat (limited to 'src/thread/pthread_attr_getstacksize.c')
-rw-r--r-- | src/thread/pthread_attr_getstacksize.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_attr_getstacksize.c b/src/thread/pthread_attr_getstacksize.c index 40bbf186..900dc9f5 100644 --- a/src/thread/pthread_attr_getstacksize.c +++ b/src/thread/pthread_attr_getstacksize.c @@ -2,6 +2,6 @@ int pthread_attr_getstacksize(pthread_attr_t *a, size_t *size) { - *size = a->__stacksize + DEFAULT_STACK_SIZE; + *size = a->_a_stacksize + DEFAULT_STACK_SIZE; return 0; } |