summaryrefslogtreecommitdiff
path: root/src/thread
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2011-03-04 00:59:14 -0500
committerRich Felker <dalias@aerifal.cx>2011-03-04 00:59:14 -0500
commit8c967b93862193421c1ba0ed49b52835e9625ba1 (patch)
tree1c94989559309c617b3d355a73b3864e87eda1bd /src/thread
parent6fc5fdbdc70dd17ea8e681a361fb4dae541ee953 (diff)
downloadmusl-8c967b93862193421c1ba0ed49b52835e9625ba1.tar.gz
enforce stack size min in pthread_attr_setstacksize
Diffstat (limited to 'src/thread')
-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 df16b980..e4de5208 100644
--- a/src/thread/pthread_attr_setstacksize.c
+++ b/src/thread/pthread_attr_setstacksize.c
@@ -2,7 +2,7 @@
int pthread_attr_setstacksize(pthread_attr_t *a, size_t size)
{
- if (size-PAGE_SIZE > SIZE_MAX/4) return EINVAL;
+ if (size-PTHREAD_STACK_MIN > SIZE_MAX/4) return EINVAL;
a->_a_stacksize = size - DEFAULT_STACK_SIZE;
return 0;
}