Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/test_daemon_application.c
Original file line number Diff line number Diff line change
Expand Up @@ -1471,6 +1471,10 @@ static bool app_wait_for_terminal_job_with_subscribers(cbm_daemon_application_t
cbm_daemon_application_job_subscribers(application, project) >= minimum_subscribers) {
return true;
}
/* Yield like every sibling wait helper: a sleepless spin pins a core
* and can starve the daemon threads it polls on scarce-CPU runners
* (windows-11-arm release leg, run 30305464193). */
cbm_usleep(1000);
}
return false;
}
Expand Down
Loading