changeset 74:95123fc1127a jdk6-b13

6771387: Changes for openjdk6 build 13 Summary: Final b13 state (as defined by the source bundle) Reviewed-by: darcy
author ohair
date Fri, 30 Jan 2009 17:16:05 -0800
parents 8a598230e9e8
children 86dd8837f824
files README-builds.html src/share/classes/com/sun/media/sound/SoftAudioPusher.java src/share/classes/com/sun/media/sound/SoftJitterCorrector.java
diffstat 3 files changed, 1 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/README-builds.html	Fri Jan 30 17:14:59 2009 -0800
+++ b/README-builds.html	Fri Jan 30 17:16:05 2009 -0800
@@ -1428,7 +1428,7 @@
                     Unix <tt>/usr/bin</tt> commands are located. You usually do not need
                     to set this variable: the default location is <tt>/usr/bin</tt>)
                 </dd>
-                <dt><a name="ALT_SLASHJAVA"><tt>ALT_SLASHJAVA</tt></a></dt>
+                <dt><a name="ALT_SLASH_JAVA"><tt>ALT_SLASH_JAVA</tt></a></dt>
                 <dd>
                     The default root location for many of the ALT path locations
                     of the following ALT variables.
--- a/src/share/classes/com/sun/media/sound/SoftAudioPusher.java	Fri Jan 30 17:14:59 2009 -0800
+++ b/src/share/classes/com/sun/media/sound/SoftAudioPusher.java	Fri Jan 30 17:16:05 2009 -0800
@@ -54,7 +54,6 @@
             return;
         active = true;
         audiothread = new Thread(this);
-        audiothread.setDaemon(true);
         audiothread.setPriority(Thread.MAX_PRIORITY);
         audiothread.start();
     }
--- a/src/share/classes/com/sun/media/sound/SoftJitterCorrector.java	Fri Jan 30 17:14:59 2009 -0800
+++ b/src/share/classes/com/sun/media/sound/SoftJitterCorrector.java	Fri Jan 30 17:16:05 2009 -0800
@@ -216,7 +216,6 @@
             };
 
             thread = new Thread(runnable);
-            thread.setDaemon(true);
             thread.setPriority(Thread.MAX_PRIORITY);
             thread.start();
         }