changeset in /hg/icedtea6: 2009-05-15 Matthias Klose <doko at ubu...
doko at ubuntu.com
doko at ubuntu.com
Fri May 15 11:16:51 PDT 2009
changeset b7e4278456bc in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=b7e4278456bc
description:
2009-05-15 Matthias Klose <doko at ubuntu.com>
* patches/icedtea-cacao-no-mmap-first-page.patch: New.
* Makefile.am (ICEDTEA_PATCHES): Apply above patch.
* HACKING: Update.
diffstat:
4 files changed, 32 insertions(+), 1 deletion(-)
ChangeLog | 6 ++++++
HACKING | 1 +
Makefile.am | 3 ++-
patches/icedtea-cacao-no-mmap-first-page.patch | 23 +++++++++++++++++++++++
diffs (64 lines):
diff -r 002142bdaa0d -r b7e4278456bc ChangeLog
--- a/ChangeLog Fri May 15 14:05:51 2009 -0400
+++ b/ChangeLog Fri May 15 20:12:25 2009 +0200
@@ -1,3 +1,9 @@ 2009-05-15 Lillian Angel <langel at redha
+2009-05-15 Matthias Klose <doko at ubuntu.com>
+
+ * patches/icedtea-cacao-no-mmap-first-page.patch: New.
+ * Makefile.am (ICEDTEA_PATCHES): Apply above patch.
+ * HACKING: Update.
+
2009-05-15 Lillian Angel <langel at redhat.com>
* configure.ac: Changed version back to 1.5.
diff -r 002142bdaa0d -r b7e4278456bc HACKING
--- a/HACKING Fri May 15 14:05:51 2009 -0400
+++ b/HACKING Fri May 15 20:12:25 2009 +0200
@@ -95,6 +95,7 @@ The following patches are currently appl
* icedtea-java2d-stroker-internal-joint.patch: Fix penultimate joint created by GeneralPath.closePath().
* icedtea-java2d-stroker-internal-close-joint.patch: Fix final joint created by GeneralPath.closePath().
* icedtea-cacao.patch: For the 'java' command, create new thread depending on the current VM.
+* icedtea-cacao-no-mmap-first-page.patch: Don't mmap the first memory page.
* icedtea-bytecodeInterpreter.patch: Replace fast opcodes with opc_default.
* icedtea-ia64-bugfix.patch: Remove workaround for IA64 GCC bug.
* icedtea-signature-iterator.patch: Add zero-specific signature handling.
diff -r 002142bdaa0d -r b7e4278456bc Makefile.am
--- a/Makefile.am Fri May 15 14:05:51 2009 -0400
+++ b/Makefile.am Fri May 15 20:12:25 2009 +0200
@@ -587,7 +587,8 @@ endif
if BUILD_CACAO
ICEDTEA_PATCHES += \
- patches/icedtea-cacao.patch
+ patches/icedtea-cacao.patch \
+ patches/icedtea-cacao-no-mmap-first-page.patch
endif
if WITH_CACAO
ICEDTEA_PATCHES += \
diff -r 002142bdaa0d -r b7e4278456bc patches/icedtea-cacao-no-mmap-first-page.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-cacao-no-mmap-first-page.patch Fri May 15 20:12:25 2009 +0200
@@ -0,0 +1,23 @@
+--- cacao/cacao/src/vm/jit/trap.c.orig 2008-07-07 13:36:19.000000000 +0200
++++ cacao/cacao/src/vm/jit/trap.c 2008-07-23 10:45:30.480113152 +0200
+@@ -59,20 +59,6 @@
+ */
+ void trap_init(void)
+ {
+-#if !(defined(__ARM__) && defined(__LINUX__))
+- /* On arm-linux the first memory page can't be mmap'ed, as it
+- contains the exception vectors. */
+-
+- int pagesize;
+-
+- /* mmap a memory page at address 0x0, so our hardware-exceptions
+- work. */
+-
+- pagesize = system_getpagesize();
+-
+- (void) system_mmap_anonymous(NULL, pagesize, PROT_NONE, MAP_PRIVATE | MAP_FIXED);
+-#endif
+-
+ TRACESUBSYSTEMINITIALIZATION("trap_init");
+
+ #if !defined(TRAP_INSTRUCTION_IS_LOAD)
More information about the distro-pkg-dev
mailing list