/hg/release/icedtea-web-1.1: Removed synchronization on Boolean ...

adomurad at icedtea.classpath.org adomurad at icedtea.classpath.org
Tue May 22 09:13:10 PDT 2012


changeset 203e1b4e5c23 in /hg/release/icedtea-web-1.1
details: http://icedtea.classpath.org/hg/release/icedtea-web-1.1?cmd=changeset;node=203e1b4e5c23
author: Adam Domurad <adomurad at redhat.com>
date: Tue May 22 12:13:03 2012 -0400

	Removed synchronization on Boolean when shutting down.


diffstat:

 plugin/icedteanp/java/sun/applet/PluginStreamHandler.java |  12 ++++--------
 1 files changed, 4 insertions(+), 8 deletions(-)

diffs (36 lines):

diff -r 4672053d61e0 -r 203e1b4e5c23 plugin/icedteanp/java/sun/applet/PluginStreamHandler.java
--- a/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java	Mon Apr 02 11:28:21 2012 -0400
+++ b/plugin/icedteanp/java/sun/applet/PluginStreamHandler.java	Tue May 22 12:13:03 2012 -0400
@@ -59,7 +59,7 @@
     private JavaConsole console = new JavaConsole();
 
     private PluginMessageConsumer consumer;
-    private Boolean shuttingDown = false;
+    private volatile boolean shuttingDown = false;
 
 
     public PluginStreamHandler(InputStream inputstream, OutputStream outputstream)
@@ -322,9 +322,7 @@
             PluginDebug.debug("  PIPE: appletviewer read: ", message);
 
             if (message == null || message.equals("shutdown")) {
-                synchronized (shuttingDown) {
-                    shuttingDown = true;
-                }
+                shuttingDown = true;
                 try {
                     // Close input/output channels to plugin.
                     pluginInputReader.close();
@@ -362,10 +360,8 @@
             } catch (IOException e) {
                 // if we are shutting down, ignore write failures as 
                 // pipe may have closed
-                synchronized (shuttingDown) {
-                    if (!shuttingDown) {
-                        e.printStackTrace();
-                    }
+                if (!shuttingDown) {
+                    e.printStackTrace();
                 }
 
                 // either ways, if the pipe is broken, there is nothing 



More information about the distro-pkg-dev mailing list