view src/.gdbinit @ 134:42592ea2966f

fix fclose/mfree problem
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Mon, 07 Jan 2019 03:38:10 +0900
parents 2088fd998865
children
line wrap: on
line source

handle 2 pass
define regs 
call (void)printf("rax=%08lx rbx=%08lx rcx=%08lx rdx=%08lx\nrsi=%08lx rdi=%08lx rbp=%08lx rsp=%08lx rip=%08lx\n",$rax,$rbx,$rcx,$rdx,$rsi,$rdi,$rbp,$rsp,$rip)
end
define si
stepi
regs
x/1i $rip
end
define ni
nexti
regs
x/1i $rip
end