changeset in /hg/icedtea: 2008-02-29 Gary Benson <gbenson at redh...

Gary Benson gbenson at redhat.com
Fri Feb 29 08:27:40 PST 2008


changeset 448e495b7740 in /hg/icedtea
details: http://icedtea.classpath.org/hg/icedtea?cmd=changeset;node=448e495b7740
description:
	2008-02-29  Gary Benson  <gbenson at redhat.com>

		* patches/icedtea-ppc-stack-hack.patch: More.

diffstat:

2 files changed, 20 insertions(+)
ChangeLog                            |    4 ++++
patches/icedtea-ppc-stack-hack.patch |   16 ++++++++++++++++

diffs (34 lines):

diff -r e0cd77567eef -r 448e495b7740 ChangeLog
--- a/ChangeLog	Fri Feb 29 05:54:07 2008 -0500
+++ b/ChangeLog	Fri Feb 29 11:27:35 2008 -0500
@@ -1,3 +1,7 @@ 2008-02-29  Gary Benson  <gbenson at redhat
+2008-02-29  Gary Benson  <gbenson at redhat.com>
+
+	* patches/icedtea-ppc-stack-hack.patch: More.
+
 2008-02-29  Gary Benson  <gbenson at redhat.com>
 
 	* patches/icedtea-ppc-stack-hack.patch: New file.
diff -r e0cd77567eef -r 448e495b7740 patches/icedtea-ppc-stack-hack.patch
--- a/patches/icedtea-ppc-stack-hack.patch	Fri Feb 29 05:54:07 2008 -0500
+++ b/patches/icedtea-ppc-stack-hack.patch	Fri Feb 29 11:27:35 2008 -0500
@@ -14,3 +14,19 @@ diff -r 6a85c2ba896a openjdk/hotspot/src
    } else {
      // let pthread_create() pick the default value.
    }
+diff -r 536e71398adf openjdk/jdk/src/solaris/bin/java_md.c
+--- openjdk/jdk/src/solaris/bin/java_md.c	Fri Feb 29 11:03:05 2008 +0000
++++ openjdk/jdk/src/solaris/bin/java_md.c	Fri Feb 29 16:24:48 2008 +0000
+@@ -1254,7 +1254,12 @@ ContinueInNewThread0(int (JNICALL *conti
+     pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
+ 
+     if (stack_size > 0) {
++#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
+     }
+ 
+     if (pthread_create(&tid, &attr, (void *(*)(void*))continuation, (void*)args) == 0) {



More information about the distro-pkg-dev mailing list