summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_setstacksize.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/thread/pthread_attr_setstacksize.c')
-rw-r--r--src/thread/pthread_attr_setstacksize.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread/pthread_attr_setstacksize.c b/src/thread/pthread_attr_setstacksize.c
index 58f4bb18..df16b980 100644
--- a/src/thread/pthread_attr_setstacksize.c
+++ b/src/thread/pthread_attr_setstacksize.c
@@ -3,6 +3,6 @@
int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
{
if (size-PAGE_SIZE > SIZE_MAX/4) return EINVAL;
- a->__stacksize = size - DEFAULT_STACK_SIZE;
+ a->_a_stacksize = size - DEFAULT_STACK_SIZE;
return 0;
}