diff options
author | Ulrich Drepper <drepper@redhat.com> | 2007-12-14 16:33:44 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2007-12-14 16:33:44 +0000 |
commit | b8cca206e299902329df298a59b319911af64b29 (patch) | |
tree | a017ccae10442bc63ffdd75db0dc97e3b6bd4886 /nptl/sysdeps/x86_64 | |
parent | bc3e1c127392da88d0c8bf2ae728147982a3d1bc (diff) | |
download | glibc-b8cca206e299902329df298a59b319911af64b29.tar.gz glibc-b8cca206e299902329df298a59b319911af64b29.tar.xz glibc-b8cca206e299902329df298a59b319911af64b29.zip |
* sysdeps/x86_64/pthreaddef.h (ARCH_RETRY_MMAP): Take additional
parameter. Passed it as permission to mmap. * allocatestack.c (allocate_stack): Pass prot as second parameter to ARCH_RETRY_MMAP.
Diffstat (limited to 'nptl/sysdeps/x86_64')
-rw-r--r-- | nptl/sysdeps/x86_64/pthreaddef.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/nptl/sysdeps/x86_64/pthreaddef.h b/nptl/sysdeps/x86_64/pthreaddef.h index 27896a445c..0195bc928f 100644 --- a/nptl/sysdeps/x86_64/pthreaddef.h +++ b/nptl/sysdeps/x86_64/pthreaddef.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2007 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Ulrich Drepper <drepper@redhat.com>, 2002. @@ -42,9 +42,8 @@ /* If it is not possible to allocate memory there retry without that flag. */ -#define ARCH_RETRY_MMAP(size) \ - mmap (NULL, size, PROT_READ | PROT_WRITE | PROT_EXEC, \ - MAP_PRIVATE | MAP_ANONYMOUS, -1, 0) +#define ARCH_RETRY_MMAP(size, prot) \ + mmap (NULL, size, prot, MAP_PRIVATE | MAP_ANONYMOUS, -1, 0) /* XXX Until we have a better place keep the definitions here. */ |