aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES.TXT
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@google.com>2009-08-21 03:05:29 +0200
committerDavid 'Digit' Turner <digit@google.com>2009-08-21 03:05:29 +0200
commit5ad9febb1c7e08fe24413f9bd04f30d92b4cfa3a (patch)
tree97cb688ef7727ee37a721596eee3af9b8c98d0cc /CHANGES.TXT
parente4c5bfae9beeb0bbb0e525e4700ae4be9971676f (diff)
downloadexternal_qemu-5ad9febb1c7e08fe24413f9bd04f30d92b4cfa3a.zip
external_qemu-5ad9febb1c7e08fe24413f9bd04f30d92b4cfa3a.tar.gz
external_qemu-5ad9febb1c7e08fe24413f9bd04f30d92b4cfa3a.tar.bz2
Fix EsounD audio backend and bump version number.
The original esdaudio.c file from upstream contains a nasty race condition that can be triggered when the emulator exists while the audio record thread is in a blocking read() call. In this case, exit() will end up calling esd_fini_in which will try to pthread_join() the blocked thread, resulting in a dead-lock. This change just gets rid of the helper threads and just performs audio output and input in the main event loop, avoiding blocking i/o completely. I haven't experienced any difference compared to the original one, be it in audio lag or CPU usage when playing a simple MP3 file in the emulated system. The change also updates the update-audio.sh script since we don't store our sources in p4 anymore. A small fix in common.sh deals removes an obsolete special case that is not needed anymore when determining the location of the host prebuilt binaries. The version number is also bumped to 1.12 and CHANGES.TXT updated accordingly.
Diffstat (limited to 'CHANGES.TXT')
-rw-r--r--CHANGES.TXT11
1 files changed, 10 insertions, 1 deletions
diff --git a/CHANGES.TXT b/CHANGES.TXT
index 8f276d4..d529ce6 100644
--- a/CHANGES.TXT
+++ b/CHANGES.TXT
@@ -14,7 +14,16 @@ Versions:
1.8 => SDK 1.1
1.9 => SDK 1.5_r1 (and SDK 1.5_r2)
1.10 => SDK 1.5_r3
- 1.11 => current
+ 1.11 => SDK 1.6_r1
+ 1.12 => current
+
+==============================================================================
+Changes between 1.12 and 1.11
+
+IMPORTANT BUG FIXES:
+
+- Fixed a nasty race condition in the Linux EsounD audio backend which resulted
+ in rare lockups when stopping the emulator on this platform.
==============================================================================
Changes between 1.11 and 1.10