qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] main-loop.c: About Select handling
@ 2012-11-28  3:08 Furukawa, Eiji
  2012-11-29 14:17 ` Stefan Hajnoczi
  0 siblings, 1 reply; 5+ messages in thread
From: Furukawa, Eiji @ 2012-11-28  3:08 UTC (permalink / raw)
  To: qemu-devel@nongnu.org

About a source of qemu-1.2.0/main-loop.c
The select handling of os_host_main_loop_wait function
I do not seem to do Exit by interrupts such as SIGUSR1
Will not it be necessary to make modifications?

Before
 LineNumber:308   ret = select(nfds + 1, &rfds, &wfds, &xfds, tvarg);

After(Example)
    do {
        ret = select(nfds + 1, &rfds, &wfds, &xfds, tvarg);
    } while(ret == -1 && (errno == EINTR || errno == EAGAIN))


--
E.Furukawa

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-12-17  4:50 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-28  3:08 [Qemu-devel] main-loop.c: About Select handling Furukawa, Eiji
2012-11-29 14:17 ` Stefan Hajnoczi
2012-12-06  0:30   ` Furukawa, Eiji
2012-12-11 10:12     ` Stefan Hajnoczi
2012-12-17  4:49       ` Furukawa, Eiji

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).