aboutsummaryrefslogtreecommitdiff
path: root/linuxthreads/attr.c
diff options
context:
space:
mode:
Diffstat (limited to 'linuxthreads/attr.c')
-rw-r--r--linuxthreads/attr.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/linuxthreads/attr.c b/linuxthreads/attr.c
index 027f69c..d1f6058 100644
--- a/linuxthreads/attr.c
+++ b/linuxthreads/attr.c
@@ -19,7 +19,6 @@
#include "pthread.h"
#include "internals.h"
-
int __pthread_attr_init_2_1(pthread_attr_t *attr)
{
size_t ps = __getpagesize ();
@@ -185,11 +184,8 @@ weak_alias (__pthread_attr_getstackaddr, pthread_attr_getstackaddr)
int __pthread_attr_setstacksize(pthread_attr_t *attr, size_t stacksize)
{
- size_t ps = __getpagesize ();
-
- /* We don't accept value smaller than PTHREAD_STACK_MIN or bigger than
- 2MB - pagesize. */
- if (stacksize < PTHREAD_STACK_MIN || stacksize > STACK_SIZE - ps)
+ /* We don't accept value smaller than PTHREAD_STACK_MIN. */
+ if (stacksize < PTHREAD_STACK_MIN)
return EINVAL;
attr->stacksize = stacksize;