[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v2 2/6] tools/console: introduce --start-notify-fd option for console client
Wei Liu writes ("[PATCH v2 2/6] tools/console: introduce --start-notify-fd option for console client"): > The console client will write 0x00 to that fd before entering console > loop to indicate its readiness. Acked-by: Ian Jackson <ian.jackson@xxxxxxxxxxxxx> > + do { > + r = write(start_notify_fd, msg, 1); > + } while ((r == -1 && errno == EINTR) || r == 0); I don't think write(,,1) can return 0. If I wrote this code I would either call abort, or crash, in that case. But spinning is OK too. Ian. _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx https://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |