mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-12 16:38:08 +00:00
fill out address
This commit is contained in:
committed by
Ryan Fleury
parent
528b0fde56
commit
4acd8a9b86
@@ -1727,6 +1727,7 @@ lnx_dmn_push_event_breakpoint(Arena *arena, DMN_EventList *events, LNX_DMN_Threa
|
|||||||
e->process = lnx_dmn_handle_from_process(thread->process);
|
e->process = lnx_dmn_handle_from_process(thread->process);
|
||||||
e->thread = lnx_dmn_handle_from_thread(thread);
|
e->thread = lnx_dmn_handle_from_thread(thread);
|
||||||
e->instruction_pointer = address;
|
e->instruction_pointer = address;
|
||||||
|
e->address = address;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
@@ -1737,6 +1738,7 @@ lnx_dmn_push_event_single_step(Arena *arena, DMN_EventList *events, LNX_DMN_Thre
|
|||||||
e->process = lnx_dmn_handle_from_process(thread->process);
|
e->process = lnx_dmn_handle_from_process(thread->process);
|
||||||
e->thread = lnx_dmn_handle_from_thread(thread);
|
e->thread = lnx_dmn_handle_from_thread(thread);
|
||||||
e->instruction_pointer = lnx_dmn_thread_read_ip(thread);
|
e->instruction_pointer = lnx_dmn_thread_read_ip(thread);
|
||||||
|
e->address = e->instruction_pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal void
|
internal void
|
||||||
@@ -1784,6 +1786,7 @@ lnx_dmn_push_event_exception(Arena *arena, DMN_EventList *events, LNX_DMN_Thread
|
|||||||
e->process = lnx_dmn_handle_from_process(thread->process);
|
e->process = lnx_dmn_handle_from_process(thread->process);
|
||||||
e->thread = lnx_dmn_handle_from_thread(thread);
|
e->thread = lnx_dmn_handle_from_thread(thread);
|
||||||
e->instruction_pointer = lnx_dmn_thread_read_ip(thread);
|
e->instruction_pointer = lnx_dmn_thread_read_ip(thread);
|
||||||
|
e->address = e->instruction_pointer;
|
||||||
e->signo = signo;
|
e->signo = signo;
|
||||||
e->exception_repeated = signo < ArrayCount(is_repeatable) ? is_repeatable[signo] : 0;
|
e->exception_repeated = signo < ArrayCount(is_repeatable) ? is_repeatable[signo] : 0;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user