MCPcopy Create free account
hub / github.com/GDRETools/gdsdecomp / is_current_task_timed_out

Method is_current_task_timed_out

utility/task_manager.cpp:697–705  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

695}
696
697bool TaskManager::is_current_task_timed_out() {
698 bool timed_out = false;
699 group_id_to_description.for_each([&](auto &v) {
700 if (v.second->is_timed_out()) {
701 timed_out = true;
702 }
703 });
704 return timed_out;
705}
706
707bool TaskManager::is_current_task_completed(TaskManagerID p_task_id) const {
708 bool done = false;

Callers 1

_check_cancelledFunction · 0.80

Calls 2

for_eachMethod · 0.80
is_timed_outMethod · 0.80

Tested by

no test coverage detected