outer loop timeout exit condition in ctrl process memory cache lookup

This commit is contained in:
Ryan Fleury
2025-06-16 09:10:25 -07:00
parent 6543dad458
commit 53e6050ee0
+6
View File
@@ -1790,6 +1790,12 @@ ctrl_key_from_process_vaddr_range(CTRL_Handle process, Rng1U64 vaddr_range, B32
{
break;
}
//- rjf: step 5: exit if out of time
if(os_now_microseconds() >= endt_us)
{
break;
}
}
if(out_is_stale)
{