From a1968d719648b7406076f921ca6410c805b8815e Mon Sep 17 00:00:00 2001 From: bellard Date: Fri, 25 Jun 2004 17:06:27 +0000 Subject: [PATCH] RT signal may not be a good idea git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@975 c046a42c-6fe2-441c-8c8c-71466251a162 --- vl.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/vl.c b/vl.c index 2c3c72d..5f1322e 100644 --- a/vl.c +++ b/vl.c @@ -921,8 +921,7 @@ static void init_timers(void) setitimer(ITIMER_REAL, &itv, NULL); /* use the RTC */ - sigaction(SIGRTMIN, &act, NULL); - fcntl(rtc_fd, F_SETSIG, SIGRTMIN); + sigaction(SIGIO, &act, NULL); fcntl(rtc_fd, F_SETFL, O_ASYNC); fcntl(rtc_fd, F_SETOWN, getpid()); } else { -- 1.7.9.5