changeset in /hg/icedtea: 2008-03-03 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Mon Mar 3 03:47:21 PST 2008
changeset 5398c0d9a012 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=5398c0d9a012
description:
2008-03-03 Gary Benson <gbenson at redhat.com>
* patches/icedtea-ports.patch
(hotspot/src/share/vm/runtime/mutex.hpp): Reworked.
diffstat:
2 files changed, 14 insertions(+), 11 deletions(-)
ChangeLog | 5 +++++
patches/icedtea-ports.patch | 20 +++++++++-----------
diffs (53 lines):
diff -r c4f526a28d0c -r 5398c0d9a012 ChangeLog
--- a/ChangeLog Mon Mar 03 06:45:08 2008 -0500
+++ b/ChangeLog Mon Mar 03 06:47:12 2008 -0500
@@ -1,3 +1,8 @@ 2008-03-03 Gary Benson <gbenson at redhat
+2008-03-03 Gary Benson <gbenson at redhat.com>
+
+ * patches/icedtea-ports.patch
+ (hotspot/src/share/vm/runtime/mutex.hpp): Reworked.
+
2008-03-03 Gary Benson <gbenson at redhat.com>
* patches/icedtea-ppc-stack-hack.patch: Removed.
diff -r c4f526a28d0c -r 5398c0d9a012 patches/icedtea-ports.patch
--- a/patches/icedtea-ports.patch Mon Mar 03 06:45:08 2008 -0500
+++ b/patches/icedtea-ports.patch Mon Mar 03 06:47:12 2008 -0500
@@ -171,28 +171,26 @@ diff -ru openjdk.orig/hotspot/src/share/
diff -ru openjdk.orig/hotspot/src/share/vm/runtime/mutex.hpp openjdk/hotspot/src/share/vm/runtime/mutex.hpp
--- openjdk.orig/hotspot/src/share/vm/runtime/mutex.hpp 2007-11-08 11:34:54.000000000 +0000
+++ openjdk/hotspot/src/share/vm/runtime/mutex.hpp 2007-11-08 11:36:15.000000000 +0000
-@@ -61,19 +61,15 @@
- } ;
+@@ -61,18 +61,10 @@ union SplitWord { // full-word with se
+ } ;
// Endian-ness ... index of least-significant byte in SplitWord.Bytes[]
-#ifdef AMD64 // little
-+#if defined(IA32) || defined(AMD64) || defined(IA64) // little
++#ifdef VM_LITTLE_ENDIAN
#define _LSBINDEX 0
#else
-#if IA32 // little
- #define _LSBINDEX 0
-#else
-#ifdef SPARC // big
-+#if defined(SPARC) || defined(PPC) // big
#define _LSBINDEX (sizeof(intptr_t)-1)
- #else
- #error "unknown architecture"
+-#else
+- #error "unknown architecture"
+-#endif
+-#endif
#endif
- #endif
--#endif
-
- class ParkEvent ;
-
+
+ class ParkEvent ;
diff -ru openjdk.orig/hotspot/src/share/vm/runtime/vm_version.cpp openjdk/hotspot/src/share/vm/runtime/vm_version.cpp
--- openjdk.orig/hotspot/src/share/vm/runtime/vm_version.cpp 2007-11-08 11:34:54.000000000 +0000
+++ openjdk/hotspot/src/share/vm/runtime/vm_version.cpp 2007-11-08 11:36:15.000000000 +0000
More information about the distro-pkg-dev
mailing list