changeset 530:9f6e0e05add0 cacao

2007-12-14 Joshua Sumali <jsumali@redhat.com> Fixes Bug #87 * Makefile.am: Added icedtea-timerqueue.patch. * Makefile.in: Regenerate. * patches/icedtea-timerqueue.patch: New patch.
author Joshua Sumali <jsumali@redhat.com>
date Fri, 14 Dec 2007 16:30:00 -0500
parents e4b0d5cb26c0
children 887f0f6a7833
files ChangeLog Makefile.am patches/icedtea-timerqueue.patch
diffstat 3 files changed, 26 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Fri Dec 14 06:01:20 2007 -0500
+++ b/ChangeLog	Fri Dec 14 16:30:00 2007 -0500
@@ -1,3 +1,10 @@
+2007-12-14  Joshua Sumali  <jsumali@redhat.com>
+
+	Fixes Bug #87
+	* Makefile.am: Added icedtea-timerqueue.patch.
+	* Makefile.in: Regenerate.
+	* patches/icedtea-timerqueue.patch: New patch.
+
 2007-12-14  Gary Benson  <gbenson@redhat.com>
 
 	* ports/hotspot/src/cpu/ppc/vm/bytecodeInterpreter_ppc.inline.hpp
--- a/Makefile.am	Fri Dec 14 06:01:20 2007 -0500
+++ b/Makefile.am	Fri Dec 14 16:30:00 2007 -0500
@@ -207,6 +207,7 @@
 	patches/icedtea-ports.patch \
 	patches/icedtea-lcms-leak.patch \
 	patches/icedtea-c1-unimplemented.patch \
+	patches/icedtea-timerqueue.patch \
 	$(FAST_BUILD_PATCH) \
 	$(DISTRIBUTION_PATCHES)
 
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/patches/icedtea-timerqueue.patch	Fri Dec 14 16:30:00 2007 -0500
@@ -0,0 +1,18 @@
+--- TimerQueue.java.orig	2007-12-13 14:08:33.000000000 -0500
++++ openjdk/jdk/src/share/classes/javax/swing/TimerQueue.java	2007-12-13 14:08:52.000000000 -0500
+@@ -106,7 +106,6 @@
+                     return null;
+                 }
+             });
+-            running = true;
+         }
+     }
+ 
+@@ -164,6 +163,7 @@
+ 
+ 
+     public void run() {
++        running = true;
+         try {
+             while (running) {
+                 try {