mirror of
https://github.com/ruby/ruby.git
synced 2025-08-15 13:39:04 +02:00
* gc.h, gc.c: introduce new debug function rb_obj_info_dump(VALUE obj)
which prints the result of rb_raw_obj_info(..., obj). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
9ba933dc01
commit
31ee824ef4
3 changed files with 13 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Oct 7 01:20:46 2015 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
|
* gc.h, gc.c: introduce new debug function rb_obj_info_dump(VALUE obj)
|
||||||
|
which prints the result of rb_raw_obj_info(..., obj).
|
||||||
|
|
||||||
Wed Oct 7 01:16:11 2015 Koichi Sasada <ko1@atdot.net>
|
Wed Oct 7 01:16:11 2015 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* vm_args.c: remove an unused field args_info::calling.
|
* vm_args.c: remove an unused field args_info::calling.
|
||||||
|
|
7
gc.c
7
gc.c
|
@ -9049,6 +9049,13 @@ rb_obj_info(VALUE obj)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
rb_obj_info_dump(VALUE obj)
|
||||||
|
{
|
||||||
|
char buff[0x100];
|
||||||
|
fprintf(stderr, "rb_obj_info_dump: %s\n", rb_raw_obj_info(buff, 0x100, obj));
|
||||||
|
}
|
||||||
|
|
||||||
#if GC_DEBUG
|
#if GC_DEBUG
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
1
gc.h
1
gc.h
|
@ -88,6 +88,7 @@ int ruby_get_stack_grow_direction(volatile VALUE *addr);
|
||||||
|
|
||||||
const char *rb_obj_info(VALUE obj);
|
const char *rb_obj_info(VALUE obj);
|
||||||
const char *rb_raw_obj_info(char *buff, const int buff_size, VALUE obj);
|
const char *rb_raw_obj_info(char *buff, const int buff_size, VALUE obj);
|
||||||
|
void rb_obj_info_dump(VALUE obj);
|
||||||
|
|
||||||
RUBY_SYMBOL_EXPORT_BEGIN
|
RUBY_SYMBOL_EXPORT_BEGIN
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue