-
Notifications
You must be signed in to change notification settings - Fork 189
Open
Description
Lines 653 to 655 in bbb64e9
| int result = select(maxfd+1, &events, 0, 0, timeout); | |
| if (!result) | |
| return 0; |
select returns -1 on error, which is never checked. This makes the function unresponsive to OS signals (EINTR), among other things.
Metadata
Metadata
Assignees
Labels
No labels