changeset in /hg/icedtea6: Merge icedtea-sparc patch hunks.
Mark Wielaard
mark at klomp.org
Fri May 16 01:32:56 PDT 2008
changeset 4560c7ed0c62 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=4560c7ed0c62
description:
Merge icedtea-sparc patch hunks.
2008-05-16 Mark Wielaard <mark at klomp.org>
* patches/icedtea-sparc.patch: Merge os_linux_sparc.cpp patch hunks.
diffstat:
2 files changed, 15 insertions(+), 21 deletions(-)
ChangeLog | 4 ++++
patches/icedtea-sparc.patch | 32 +++++++++++---------------------
diffs (74 lines):
diff -r 33a90721ac50 -r 4560c7ed0c62 ChangeLog
--- a/ChangeLog Thu May 15 11:51:53 2008 +0200
+++ b/ChangeLog Fri May 16 10:32:43 2008 +0200
@@ -1,3 +1,7 @@ 2008-05-15 Matthias Klose <doko at ubuntu
+2008-05-16 Mark Wielaard <mark at klomp.org>
+
+ * patches/icedtea-sparc.patch: Merge os_linux_sparc.cpp patch hunks.
+
2008-05-15 Matthias Klose <doko at ubuntu.com>
* patches/icedtea-sparc.patch: New.
diff -r 33a90721ac50 -r 4560c7ed0c62 patches/icedtea-sparc.patch
--- a/patches/icedtea-sparc.patch Thu May 15 11:51:53 2008 +0200
+++ b/patches/icedtea-sparc.patch Fri May 16 10:32:43 2008 +0200
@@ -582,7 +582,7 @@ Reviewed-by: kamg
+inline void OrderAccess::release_store_ptr_fence(volatile void* p, void* v) { *(void* volatile *)p = v; fence(); }
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ openjdk/hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp Thu Apr 24 15:07:57 2008 -0400
-@@ -0,0 +1,648 @@
+@@ -0,0 +1,658 @@
+/*
+ * Copyright 1999-2007 Sun Microsystems, Inc. All Rights Reserved.
+ * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
@@ -847,6 +847,16 @@ Reviewed-by: kamg
+}
+
+// Utility functions
++
++julong os::allocatable_physical_memory(julong size) {
++ julong result = MIN2(size, (julong)3800*M);
++ if (!is_allocatable(result)) {
++ // See comments under solaris for alignment considerations
++ julong reasonable_size = (julong)2*G - 2 * os::vm_page_size();
++ result = MIN2(size, reasonable_size);
++ }
++ return result;
++}
+
+extern "C" void Fetch32PFI();
+extern "C" void Fetch32Resume();
@@ -1231,7 +1241,6 @@ Reviewed-by: kamg
+ // guard page, only enable glibc guard page for non-Java threads.
+ return (thr_type == java_thread ? 0 : page_size());
+}
---- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ openjdk/hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.hpp Thu Apr 24 15:07:57 2008 -0400
@@ -0,0 +1,46 @@
+/*
@@ -1786,25 +1795,6 @@ diff -urN openjdk/hotspot/build/linux/ma
VM_PICFLAG/LIBJVM = $(PICFLAG)
VM_PICFLAG/AOUT =
---- openjdk/hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp.orig 2008-05-13 22:48:33.000000000 +0000
-+++ openjdk/hotspot/src/os_cpu/linux_sparc/vm/os_linux_sparc.cpp 2008-05-14 06:58:25.000000000 +0000
-@@ -263,6 +263,16 @@
-
- // Utility functions
-
-+julong os::allocatable_physical_memory(julong size) {
-+ julong result = MIN2(size, (julong)3800*M);
-+ if (!is_allocatable(result)) {
-+ // See comments under solaris for alignment considerations
-+ julong reasonable_size = (julong)2*G - 2 * os::vm_page_size();
-+ result = MIN2(size, reasonable_size);
-+ }
-+ return result;
-+}
-+
- extern "C" void Fetch32PFI();
- extern "C" void Fetch32Resume();
- extern "C" void FetchNPFI();
--- openjdk/hotspot/build/linux/makefiles/defs.make.orig 2008-05-14 10:39:14.000000000 +0000
+++ openjdk/hotspot/build/linux/makefiles/defs.make 2008-05-14 15:18:21.000000000 +0000
@@ -59,7 +59,7 @@
More information about the distro-pkg-dev
mailing list