/hg/icedtea6: Update params-cast-size_t.patch for hs19

doko at icedtea.classpath.org doko at icedtea.classpath.org
Sun Nov 28 23:50:46 PST 2010


changeset c3150835fe12 in /hg/icedtea6
details: http://icedtea.classpath.org/hg/icedtea6?cmd=changeset;node=c3150835fe12
author: doko at ubuntu.com
date: Mon Nov 29 08:50:36 2010 +0100

	Update params-cast-size_t.patch for hs19

	2010-11-29 Matthias Klose <doko at ubuntu.com>

	 * patches/hotspot/hs19/params-cast-size_t.patch: Update for
	hs19.


diffstat:

2 files changed, 15 insertions(+)
ChangeLog                                     |    4 ++++
patches/hotspot/hs19/params-cast-size_t.patch |   11 +++++++++++

diffs (29 lines):

diff -r 0aab3837f513 -r c3150835fe12 ChangeLog
--- a/ChangeLog	Wed Nov 24 22:44:32 2010 +0000
+++ b/ChangeLog	Mon Nov 29 08:50:36 2010 +0100
@@ -1,3 +1,7 @@ 2010-11-24  Andrew John Hughes  <ahughes
+2010-11-29  Matthias Klose  <doko at ubuntu.com>
+
+	* patches/hotspot/hs19/params-cast-size_t.patch: Update for hs19.
+
 2010-11-24  Andrew John Hughes  <ahughes at redhat.com>
 
 	Final plugin & NetX cleanup.
diff -r 0aab3837f513 -r c3150835fe12 patches/hotspot/hs19/params-cast-size_t.patch
--- a/patches/hotspot/hs19/params-cast-size_t.patch	Wed Nov 24 22:44:32 2010 +0000
+++ b/patches/hotspot/hs19/params-cast-size_t.patch	Mon Nov 29 08:50:36 2010 +0100
@@ -282,3 +282,14 @@ diff -Nru openjdk.orig/hotspot/src/share
    const size_t end_index = beg_index + stride;
    T* const base = (T*)a->base();
    T* const beg = base + beg_index;
+--- openjdk/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp~	2010-10-08 20:29:24.000000000 +0000
++++ openjdk/hotspot/src/share/vm/gc_implementation/parNew/parNewGeneration.cpp	2010-11-29 07:27:56.000000000 +0000
+@@ -163,7 +163,7 @@
+   const size_t num_overflow_elems = of_stack->size();
+   const size_t space_available = queue->max_elems() - queue->size();
+   const size_t num_take_elems = MIN3(space_available / 4,
+-                                     ParGCDesiredObjsFromOverflowList,
++                                     (size_t) ParGCDesiredObjsFromOverflowList,
+                                      num_overflow_elems);
+   // Transfer the most recent num_take_elems from the overflow
+   // stack to our work queue.



More information about the distro-pkg-dev mailing list