Commit 5f6080ee authored by Eric Pouech's avatar Eric Pouech Committed by Alexandre Julliard

Removed suicide code when playback thread's father dies.

parent 46e8fff4
......@@ -2213,11 +2213,19 @@ static DWORD WINAPI DSOUND_thread(LPVOID arg)
WARN("DSOUND thread giving up.\n");
ExitThread(0);
}
#if 0
/* EP: since the thread creating this thread can
* die before the end of the DSOUND one, this
* test is of no use
* What shall be tested is whether the DSOUND thread
* is the last one in the process
*/
if (getppid()==1) {
WARN("DSOUND father died? Giving up.\n");
ExitThread(0);
}
/* RACE: dsound could be deleted */
#endif
/* RACE: dsound could be deleted */
IDirectSound_AddRef((LPDIRECTSOUND)dsound);
if (primarybuf == NULL) {
/* Should never happen */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment