You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 12, 2019. It is now read-only.
6c2035a and similar changes need to be checked, libratbox's epoll loop is edge triggered but the code assumes it's level triggered
Since the change itself was to avoid an infinite loop, it may be best to change the event loop so this sort of code can be used to avoid callback recursion
Options:
Always call setselect before an fd might be written to, instead of after as rb_helper is currently doing
Level triggered + EPOLLONESHOT, might actually be the best option
There's about 80 rb_setselect calls that would need to be checked
The text was updated successfully, but these errors were encountered:
6c2035a and similar changes need to be checked, libratbox's epoll loop is edge triggered but the code assumes it's level triggered
Since the change itself was to avoid an infinite loop, it may be best to change the event loop so this sort of code can be used to avoid callback recursion
Options:
There's about 80 rb_setselect calls that would need to be checked
The text was updated successfully, but these errors were encountered: