changeset in /hg/icedtea: 2008-02-29 Gary Benson <gbenson at redh...
Gary Benson
gbenson at redhat.com
Fri Feb 29 02:54:13 PST 2008
changeset e0cd77567eef in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=e0cd77567eef
description:
2008-02-29 Gary Benson <gbenson at redhat.com>
* patches/icedtea-ppc-stack-hack.patch: New file.
* Makefile.am (ICEDTEA_PATCHES): Added the above.
* Makefile.in: Regenerated.
diffstat:
4 files changed, 24 insertions(+)
ChangeLog | 6 ++++++
Makefile.am | 1 +
Makefile.in | 1 +
patches/icedtea-ppc-stack-hack.patch | 16 ++++++++++++++++
diffs (55 lines):
diff -r 25a7a016f7c5 -r e0cd77567eef ChangeLog
--- a/ChangeLog Thu Feb 28 13:11:45 2008 -0500
+++ b/ChangeLog Fri Feb 29 05:54:07 2008 -0500
@@ -1,3 +1,9 @@ 2008-02-28 Joshua Sumali <jsumali at redh
+2008-02-29 Gary Benson <gbenson at redhat.com>
+
+ * patches/icedtea-ppc-stack-hack.patch: New file.
+ * Makefile.am (ICEDTEA_PATCHES): Added the above.
+ * Makefile.in: Regenerated.
+
2008-02-28 Joshua Sumali <jsumali at redhat.com>
* Makefile.am
diff -r 25a7a016f7c5 -r e0cd77567eef Makefile.am
--- a/Makefile.am Thu Feb 28 13:11:45 2008 -0500
+++ b/Makefile.am Fri Feb 29 05:54:07 2008 -0500
@@ -281,6 +281,7 @@ ICEDTEA_PATCHES = \
patches/icedtea-lib64.patch \
patches/icedtea-zero.patch \
patches/icedtea-freetype.patch \
+ patches/icedtea-ppc-stack-hack.patch \
$(GCC_PATCH) \
$(FAST_BUILD_PATCH) \
$(ZERO_BUILD_PATCH) \
diff -r 25a7a016f7c5 -r e0cd77567eef Makefile.in
--- a/Makefile.in Thu Feb 28 13:11:45 2008 -0500
+++ b/Makefile.in Fri Feb 29 05:54:07 2008 -0500
@@ -376,6 +376,7 @@ ICEDTEA_PATCHES = \
patches/icedtea-lib64.patch \
patches/icedtea-zero.patch \
patches/icedtea-freetype.patch \
+ patches/icedtea-ppc-stack-hack.patch \
$(GCC_PATCH) \
$(FAST_BUILD_PATCH) \
$(ZERO_BUILD_PATCH) \
diff -r 25a7a016f7c5 -r e0cd77567eef patches/icedtea-ppc-stack-hack.patch
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-ppc-stack-hack.patch Fri Feb 29 05:54:07 2008 -0500
@@ -0,0 +1,16 @@
+diff -r 6a85c2ba896a openjdk/hotspot/src/os/linux/vm/os_linux.cpp
+--- openjdk/hotspot/src/os/linux/vm/os_linux.cpp Fri Feb 29 10:10:42 2008 +0000
++++ openjdk/hotspot/src/os/linux/vm/os_linux.cpp Fri Feb 29 10:17:34 2008 +0000
+@@ -845,7 +845,12 @@ bool os::create_thread(Thread* thread, T
+ }
+
+ stack_size = MAX2(stack_size, os::Linux::min_stack_allowed);
++#ifdef PPC
++ // https://bugzilla.redhat.com/show_bug.cgi?id=435337
++ pthread_attr_setstacksize(&attr, stack_size + 64*K);
++#else
+ pthread_attr_setstacksize(&attr, stack_size);
++#endif // PPC
+ } else {
+ // let pthread_create() pick the default value.
+ }
More information about the distro-pkg-dev
mailing list