mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 13:28:40 +00:00
fix callstack cache lookup early out case
This commit is contained in:
@@ -3490,8 +3490,8 @@ ctrl_call_stack_from_thread(CTRL_Scope *scope, CTRL_Handle thread_handle, B32 hi
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//- rjf: out of time => exit
|
//- rjf: out of time, or got new result => exit
|
||||||
if(retry_idx > 0 && os_now_microseconds() >= endt_us)
|
if((retry_idx > 0 && os_now_microseconds() >= endt_us) || !node_stale)
|
||||||
{
|
{
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user