mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* .gdbinit (rp): show type name for RTypedData.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28173 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
af97da84ed
commit
0133aee46c
2 changed files with 5 additions and 1 deletions
2
.gdbinit
2
.gdbinit
|
@ -269,7 +269,7 @@ define rp
|
|||
else
|
||||
if ($flags & RUBY_T_MASK) == RUBY_T_DATA
|
||||
if ((struct RTypedData *)($arg0))->typed_flag == 1
|
||||
printf "T_DATA(typed): "
|
||||
printf "T_DATA(%s): ", ((struct RTypedData *)($arg0))->type->wrap_struct_name
|
||||
print (struct RTypedData *)($arg0)
|
||||
else
|
||||
printf "T_DATA: "
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
Sat Jun 5 16:39:13 2010 Tanaka Akira <akr@fsij.org>
|
||||
|
||||
* .gdbinit (rp): show type name for RTypedData.
|
||||
|
||||
Sat Jun 5 15:59:08 2010 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* ruby.c (process_options, load_file_internal): $0 seen from
|
||||
|
|
Loading…
Reference in a new issue