mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Use correct stack segment with corefiles.
This commit is contained in:
parent
49afd99659
commit
439d0ff00b
1 changed files with 3 additions and 0 deletions
|
|
@ -942,6 +942,9 @@ core_file_command(filename, from_tty)
|
|||
*/
|
||||
reg_offset = (int) u.u_ar0 - KERNEL_U_ADDR;
|
||||
#else
|
||||
stack_end = (CORE_ADDR) u.u_kproc.kp_eproc.e_vm.vm_maxsaddr
|
||||
+ MAXSSIZ;
|
||||
|
||||
data_end = data_start +
|
||||
NBPG * u.u_kproc.kp_eproc.e_vm.vm_dsize;
|
||||
stack_start = stack_end -
|
||||
|
|
|
|||
Loading…
Reference in a new issue