mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-11-24 07:19:37 +03:00
Make gui_poll() a little better. Don't check for the event pipe fd if select returned an error.
svn path=/trunk/netsurf/; revision=5492
This commit is contained in:
parent
eda397e028
commit
de531c691a
@ -650,15 +650,18 @@ void gui_poll(bool active)
|
||||
|
||||
|
||||
bigtime_t next_schedule = earliest_callback_timeout - system_time();
|
||||
if (!block)
|
||||
next_schedule = 0LL; // now
|
||||
if (block && earliest_callback_timeout != B_INFINITE_TIMEOUT)
|
||||
block = false;
|
||||
timeout.tv_sec = (long)(next_schedule / 1000000LL);
|
||||
timeout.tv_usec = (long)(next_schedule % 1000000LL);
|
||||
LOG(("gui_poll: select(%d, ..., %Ldus", max_fd, next_schedule));
|
||||
|
||||
fd_count = select(max_fd, &read_fd_set, &write_fd_set, &exc_fd_set,
|
||||
/*block?NULL:*/(
|
||||
earliest_callback_timeout == B_INFINITE_TIMEOUT) ? NULL : &timeout);
|
||||
block ? NULL : &timeout);
|
||||
|
||||
if (max_fd > 0 && FD_ISSET(sEventPipe[0], &read_fd_set)) {
|
||||
if (fd_count > 0 && FD_ISSET(sEventPipe[0], &read_fd_set)) {
|
||||
BMessage *message;
|
||||
int len = read(sEventPipe[0], &message, sizeof(void *));
|
||||
LOG(("gui_poll: BMessage ? %d read", len));
|
||||
|
Loading…
Reference in New Issue
Block a user