remove timeout on thread register cache accessor

This commit is contained in:
Ryan Fleury
2024-03-12 16:35:43 -07:00
parent c417f15912
commit 936c6149e3
3 changed files with 5 additions and 5 deletions
+1 -1
View File
@@ -3717,7 +3717,7 @@ internal B32
df_set_thread_rip(DF_Entity *thread, U64 vaddr)
{
Temp scratch = scratch_begin(0, 0);
void *block = ctrl_query_cached_reg_block_from_thread(scratch.arena, thread->ctrl_machine_id, thread->ctrl_handle, max_U64);
void *block = ctrl_query_cached_reg_block_from_thread(scratch.arena, thread->ctrl_machine_id, thread->ctrl_handle);
regs_arch_block_write_rip(thread->arch, block, vaddr);
B32 result = ctrl_thread_write_reg_block(thread->ctrl_machine_id, thread->ctrl_handle, block);