[前][次][番号順一覧][スレッド一覧]

ruby-changes:48422

From: ktsj <ko1@a...>
Date: Sun, 29 Oct 2017 15:16:15 +0900 (JST)
Subject: [ruby-changes:48422] ktsj:r60536 (trunk): .gdbinit: follow up changes in r60440

ktsj	2017-10-29 15:16:10 +0900 (Sun, 29 Oct 2017)

  New Revision: 60536

  https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60536

  Log:
    .gdbinit: follow up changes in r60440
    
    ruby_current_vm has been renamed to ruby_current_vm_ptr.

  Modified files:
    trunk/.gdbinit
Index: .gdbinit
===================================================================
--- .gdbinit	(revision 60535)
+++ .gdbinit	(revision 60536)
@@ -989,7 +989,7 @@ define iseq https://github.com/ruby/ruby/blob/trunk/.gdbinit#L989
 end
 
 define rb_ps
-  rb_ps_vm ruby_current_vm
+  rb_ps_vm ruby_current_vm_ptr
 end
 document rb_ps
 Dump all threads and their callstacks
@@ -1181,7 +1181,7 @@ define rb_ps_thread https://github.com/ruby/ruby/blob/trunk/.gdbinit#L1181
 end
 
 define rb_count_objects
-  set $objspace = ruby_current_vm->objspace
+  set $objspace = ruby_current_vm_ptr->objspace
   set $counts_00 = 0
   set $counts_01 = 0
   set $counts_02 = 0

--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]