Skip to content

Commit 14e8f4d

Browse files
committed
Make GC.latest_gc_info return :state for StackProf
1 parent 612beaa commit 14e8f4d

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

gc/mmtk.c

+11
Original file line numberDiff line numberDiff line change
@@ -1223,6 +1223,17 @@ rb_gc_impl_latest_gc_info(void *objspace_ptr, VALUE hash_or_key)
12231223
rb_bug("gc_info_decode: non-hash or symbol given");
12241224
}
12251225

1226+
#define SET(name, attr) \
1227+
if (key == ID2SYM(rb_intern_const(#name))) \
1228+
return (attr); \
1229+
else if (hash != Qnil) \
1230+
rb_hash_aset(hash, ID2SYM(rb_intern_const(#name)), (attr));
1231+
1232+
/* Hack to get StackProf working because it calls rb_gc_latest_gc_info with
1233+
* the :state key and expects a result. This always returns the :none state. */
1234+
SET(state, ID2SYM(rb_intern_const("none")));
1235+
#undef SET
1236+
12261237
if (!NIL_P(key)) {
12271238
// Matched key should return above
12281239
return Qundef;

spec/mmtk.mspec

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
# frozen_string_literal: true
22

3-
# GC.latest_gc_info doesn't return anything
4-
MSpec.register(:exclude, "CApiGCSpecs rb_gc_latest_gc_info returns a value when symbol is given")
5-
MSpec.register(:exclude, "CApiGCSpecs rb_gc_latest_gc_info returns the populated hash when a hash is given")
63
# Testing behaviour specific to default GC
74
MSpec.register(:exclude, "GC.stat increases major_gc_count after GC is run")
85
MSpec.register(:exclude, "GC.stat provides some number for heap_free_slots")

0 commit comments

Comments
 (0)