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
if (timeout >= 0&& (next_time<0||timeout<next_time))
next_time=timeout;
uloop_run_events(next_time);
consider the following case: uloop_run_events (-1) was entered when there is no next_timeout
and then executing uloop_timeout_add to add a timeout "task" that will not wake up uloop_run_events
the timeout "task" will never be executed.
The text was updated successfully, but these errors were encountered:
libubox/uloop.c
Lines 667 to 678 in c1be505
consider the following case:
uloop_run_events (-1)
was entered when there is nonext_timeout
and then executing
uloop_timeout_add
to add a timeout "task" that will not wake upuloop_run_events
the timeout "task" will never be executed.
The text was updated successfully, but these errors were encountered: