mirror of
https://github.com/Zenithsiz/ftmemsim-valgrind.git
synced 2026-02-03 10:05:29 +00:00
Use 'set heuristic-fence-post 999999' only on mips platforms git-svn-id: svn://svn.valgrind.org/valgrind/trunk@16305
18 lines
356 B
Plaintext
18 lines
356 B
Plaintext
# connect gdb to Valgrind gdbserver:
|
|
target remote | ./vgdb --wait=60 --vgdb-prefix=./vgdb-prefix-mcmain_pic
|
|
echo vgdb launched process attached\n
|
|
source mcmain_pic.heur
|
|
monitor v.set vgdb-error 999999
|
|
#
|
|
# break
|
|
break main_pic.c:12
|
|
#
|
|
continue
|
|
# first break encountered.
|
|
print another_func("called from gdb")
|
|
#
|
|
print &main
|
|
print &another_func
|
|
continue
|
|
quit
|