diff options
-rw-r--r-- | linuxthreads/attr.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/linuxthreads/attr.c b/linuxthreads/attr.c index fc1ab59..1aeac54 100644 --- a/linuxthreads/attr.c +++ b/linuxthreads/attr.c @@ -145,11 +145,6 @@ int pthread_attr_getscope(const pthread_attr_t *attr, int *scope) int __pthread_attr_setguardsize(pthread_attr_t *attr, size_t guardsize) { - size_t ps = __getpagesize (); - - /* First round up the guard size. */ - guardsize = page_roundup (guardsize, ps); - /* The guard size must not be larger than the stack itself */ if (guardsize >= attr->__stacksize) return EINVAL; |