diff options
author | Andrew Haley <aph@redhat.com> | 2004-01-20 15:18:33 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2004-01-20 15:18:33 +0000 |
commit | 1bec19ccf7462019c3dc0987c818d8f7c55c5674 (patch) | |
tree | 5e230f9196b4fb4e6c1858c622502dea8b71a499 /boehm-gc | |
parent | 4850c9827b54a26011070640f12c4a3479dee5a1 (diff) | |
download | gcc-1bec19ccf7462019c3dc0987c818d8f7c55c5674.zip gcc-1bec19ccf7462019c3dc0987c818d8f7c55c5674.tar.gz gcc-1bec19ccf7462019c3dc0987c818d8f7c55c5674.tar.bz2 |
gcconfig.h (USE_MMAP): Define for all Linux.
2004-01-20 Andrew Haley <aph@redhat.com>
* include/private/gcconfig.h (USE_MMAP): Define for all Linux.
* configure.in: Comment change.
From-SVN: r76210
Diffstat (limited to 'boehm-gc')
-rw-r--r-- | boehm-gc/ChangeLog | 6 | ||||
-rw-r--r-- | boehm-gc/configure.in | 2 | ||||
-rw-r--r-- | boehm-gc/include/private/gcconfig.h | 3 |
3 files changed, 9 insertions, 2 deletions
diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index b590a1f..ebdb8dd 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2004-01-20 Andrew Haley <aph@redhat.com> + + * include/private/gcconfig.h (USE_MMAP): Define for all Linux. + + * configure.in: Comment change. + 2004-01-16 Andrew Haley <aph@redhat.com> * configure.in (NO_EXECUTE_PERMISSION): Remove global declaration; diff --git a/boehm-gc/configure.in b/boehm-gc/configure.in index ba5ccb9..f109c90 100644 --- a/boehm-gc/configure.in +++ b/boehm-gc/configure.in @@ -248,7 +248,7 @@ esac # # We don't set NO_EXECUTE_PERMISSION by default because gcj (and # anything else that creates trampolines in gc-allocated memory) -# always needs exec permission. The exception to this is IA-64 and +# always needs exec permission. The exceptions to this are IA-64 and # some variations of Power PC, where trampolines don't contain # executable code. # diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index 65e71479..a13ad2e 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -617,7 +617,8 @@ # define OS_TYPE "LINUX" # define STACKBOTTOM ((ptr_t)0xf0000000) # define USE_GENERIC_PUSH_REGS - /* We never got around to the assembly version. */ +# define USE_MMAP + /* We never got around to the assembly version. */ /* # define MPROTECT_VDB - Reported to not work 9/17/01 */ # ifdef __ELF__ # define DYNAMIC_LOADING |