File timidity-alsaseq-poll-fix.diff of Package timidity

--- interface/alsaseq_c.c-dist	2004-07-10 07:07:00.000000000 +0200
+++ interface/alsaseq_c.c	2007-08-02 18:24:47.000000000 +0200
@@ -500,6 +500,8 @@ static void stop_playing(void)
 
 static void doit(struct seq_context *ctxp)
 {
+	fd_set rfds;
+	struct timeval timeout;
 	for (;;) {
 		while (snd_seq_event_input_pending(ctxp->handle, 1)) {
 			if (do_sequencer(ctxp))
@@ -527,15 +529,17 @@ static void doit(struct seq_context *ctx
 			play_event(&ev);
 			aq_fill_nonblocking();
 		}
-		if (! ctxp->active || ! IS_STREAM_TRACE) {
-			fd_set rfds;
-			struct timeval timeout;
-			FD_ZERO(&rfds);
-			FD_SET(ctxp->fd, &rfds);
+
+		FD_ZERO(&rfds);
+		FD_SET(ctxp->fd, &rfds);
+		if (ctxp->active) {
 			timeout.tv_sec = 0;
 			timeout.tv_usec = 10000; /* 10ms */
 			if (select(ctxp->fd + 1, &rfds, NULL, NULL, &timeout) < 0)
 				goto __done;
+		} else {
+			if (select(ctxp->fd + 1, &rfds, NULL, NULL, NULL) < 0)
+				goto __done;
 		}
 	}
 
openSUSE Build Service is sponsored by