Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Yano <takashi.yano@nifty.ne.jp>2023-09-17 02:32:09 +0300
committerTakashi Yano <takashi.yano@nifty.ne.jp>2023-09-17 15:53:44 +0300
commit8484773f47ccb14a24e3b40a5b5a329ae5768f82 (patch)
tree681d51f02192b20eceabb0d852f1fefd86bf6616 /winsup/cygwin
parentc2d2bf34e6959615a3ba0edf4153d210501ba04f (diff)
Cygwin: dsp: Fix a bug that app hangs if it killed during write().
If app is killed during blocking write(), it sometimes hangs. This patch fixes the issue. Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
Diffstat (limited to 'winsup/cygwin')
-rw-r--r--winsup/cygwin/fhandler/dsp.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler/dsp.cc b/winsup/cygwin/fhandler/dsp.cc
index 5f78821d4..03c812a9c 100644
--- a/winsup/cygwin/fhandler/dsp.cc
+++ b/winsup/cygwin/fhandler/dsp.cc
@@ -590,7 +590,8 @@ fhandler_dev_dsp::Audio_out::waitforallsent ()
while (Qisr2app_->query () != fh->fragstotal_)
{
debug_printf ("%d blocks in Qisr2app", Qisr2app_->query ());
- Sleep (100);
+ cygwait (1);
+ sendcurrent ();
}
}