8000 BareSip. Add a state update action to the main loop to unblock pollin… by viordash · Pull Request #480 · baresip/re · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

BareSip. Add a state update action to the main loop to unblock pollin… #480

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 10 commits into from
Aug 22, 2022
4 changes: 3 additions & 1 deletion src/main/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1352,7 +1352,9 @@ void re_thread_leave(void)
DEBUG_WARNING("re_thread_leave: re not ready\n");
return;
}

/* Dummy async event, to ensure timers are properly handled */
if (re->async)
re_thread_async(NULL, NULL, NULL);
re_atomic_rlx_set(&re->thread_enter, false);
re_unlock(re);
}
Expand Down
0