os/Linux 2018. 2. 21. 16:45
Linux gdb elapsed time check
https://unix.stackexchange.com/questions/312086/elapsed-time-in-gdb/312228?noredirect=1#comment548892_312228

break *0xaddress
run
# target process is now stopped at breakpoint
python import time
python starttime=time.time()
continue
python print (time.time()-starttime






posted by cskimair
: