btstack_run_loop_windows: support btstack_run_loop_trigger_exit

This commit is contained in:
Matthias Ringwald 2024-08-06 17:31:03 +02:00
parent 41e15c2ad2
commit 39dac8ff74

View File

@ -86,7 +86,10 @@ static void btstack_run_loop_windows_execute(void) {
btstack_linked_list_iterator_t it;
while (true) {
// clear exit flag
run_loop_exit_requested = false;
while (run_loop_exit_requested == false) {
// process timers
uint32_t now_ms = btstack_run_loop_windows_get_time_ms();