mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* .gdbinit: add function `trace_machine_instructions' to trace
in native machine assemble. See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB for more details. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35951 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
7e0c93b0c3
commit
d556a47598
2 changed files with 20 additions and 0 deletions
13
.gdbinit
13
.gdbinit
|
@ -755,3 +755,16 @@ define rb_ps_thread
|
|||
set $ps_thread_id = $arg1
|
||||
print $ps_thread_th = (rb_thread_t*)$ps_thread->data
|
||||
end
|
||||
|
||||
# Details: https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB
|
||||
define trace_machine_instructions
|
||||
set logging on
|
||||
set height 0
|
||||
set width 0
|
||||
display/i $pc
|
||||
while !$exit_code
|
||||
info line *$pc
|
||||
si
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
Thu Jun 07 15:53:03 2012 Koichi Sasada <ko1@atdot.net>
|
||||
|
||||
* .gdbinit: add function `trace_machine_instructions' to trace
|
||||
in native machine assemble.
|
||||
See https://bugs.ruby-lang.org/projects/ruby-trunk/wiki/MachineInstructionsTraceWithGDB
|
||||
for more details.
|
||||
|
||||
Wed Jun 6 21:31:21 2012 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* process.c (proc_exec_cmd) renamed from proc_exec_v.
|
||||
|
|
Loading…
Reference in a new issue