From f260691ac4f58e7ce0e282d7b48bddbae8f00828 Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Mon, 11 Dec 2006 20:51:32 +0100 Subject: [PATCH] Set nonblocking mode for output. --- src/viewer/text/festival.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/viewer/text/festival.c b/src/viewer/text/festival.c index 938c1c84..ce9889d1 100644 --- a/src/viewer/text/festival.c +++ b/src/viewer/text/festival.c @@ -132,6 +132,7 @@ init_festival(void) close(in_pipe[0]); festival.in = out_pipe[0]; festival.out = in_pipe[1]; + set_nonblocking_fd(festival.out); set_handlers(festival.in, (select_handler_T) read_from_festival, NULL, NULL, &festival); return 0;