mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* gc.c (rb_raw_obj_info): fix compile errors when USE_RGENGC
is 0. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
d71ead259e
commit
88376e639e
2 changed files with 15 additions and 3 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Nov 22 22:23:37 2015 Rei Odaira <Rei.Odaira@gmail.com>
|
||||
|
||||
* gc.c (rb_raw_obj_info): fix compile errors when USE_RGENGC
|
||||
is 0.
|
||||
|
||||
Sun Nov 22 21:58:09 2015 Naohisa Goto <ngotogenome@gmail.com>
|
||||
|
||||
* lib/cmath.rb: methods which has suffix '!' are now deprecated.
|
||||
|
|
13
gc.c
13
gc.c
|
@ -8965,11 +8965,12 @@ rb_raw_obj_info(char *buff, const int buff_size, VALUE obj)
|
|||
snprintf(buff, buff_size, "%s", obj_type_name(obj));
|
||||
}
|
||||
else {
|
||||
const int age = RVALUE_FLAGS_AGE(RBASIC(obj)->flags);
|
||||
const int type = BUILTIN_TYPE(obj);
|
||||
|
||||
#define TF(c) ((c) != 0 ? "true" : "false")
|
||||
#define C(c, s) ((c) != 0 ? (s) : " ")
|
||||
const int type = BUILTIN_TYPE(obj);
|
||||
#if USE_RGENGC
|
||||
const int age = RVALUE_FLAGS_AGE(RBASIC(obj)->flags);
|
||||
|
||||
snprintf(buff, buff_size, "%p [%d%s%s%s%s] %s",
|
||||
(void *)obj, age,
|
||||
C(RVALUE_UNCOLLECTIBLE_BITMAP(obj), "L"),
|
||||
|
@ -8977,6 +8978,12 @@ rb_raw_obj_info(char *buff, const int buff_size, VALUE obj)
|
|||
C(RVALUE_MARKING_BITMAP(obj), "R"),
|
||||
C(RVALUE_WB_UNPROTECTED_BITMAP(obj), "U"),
|
||||
obj_type_name(obj));
|
||||
#else
|
||||
snprintf(buff, buff_size, "%p [%s] %s",
|
||||
(void *)obj,
|
||||
C(RVALUE_MARK_BITMAP(obj), "M"),
|
||||
obj_type_name(obj));
|
||||
#endif
|
||||
|
||||
if (internal_object_p(obj)) {
|
||||
/* ignore */
|
||||
|
|
Loading…
Reference in a new issue