changeset in /hg/pulseaudio: 2008-09-09 Omair Majid <omajid at redh...

Omair Majid omajid at redhat.com
Wed Sep 10 07:29:09 PDT 2008


changeset 95fa206a3e1d in /hg/pulseaudio
details: http://icedtea.classpath.org/hg/pulseaudio?cmd=changeset;node=95fa206a3e1d
description:
	2008-09-09 Omair Majid <omajid at redhat.com>

	    * src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
	    (openRemove): Make the eventloop thread a daemon thread.

diffstat:

1 file changed, 6 insertions(+), 1 deletion(-)
src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java |    7 ++++++-

diffs (17 lines):

diff -r 6fa7b2b70780 -r 95fa206a3e1d src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java
--- a/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Mon Sep 08 14:15:34 2008 -0400
+++ b/src/java/org/classpath/icedtea/pulseaudio/PulseAudioMixer.java	Tue Sep 09 11:06:05 2008 -0400
@@ -587,7 +587,12 @@ public class PulseAudioMixer implements 
 
 		eventLoopThread = new Thread(eventLoop, "PulseAudio Eventloop Thread");
 
-		eventLoopThread.setDaemon(false);
+		/*
+		 * Make the thread exit if by some weird error it is the only thread
+		 * running. The application should be able to exit if the main thread
+		 * doesn't or can't (perhaps an assert?) do a mixer.close().
+		 */
+		eventLoopThread.setDaemon(true);
 		eventLoopThread.start();
 
 		try {



More information about the distro-pkg-dev mailing list