File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -1223,6 +1223,17 @@ rb_gc_impl_latest_gc_info(void *objspace_ptr, VALUE hash_or_key)
1223
1223
rb_bug ("gc_info_decode: non-hash or symbol given" );
1224
1224
}
1225
1225
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
+
1226
1237
if (!NIL_P (key )) {
1227
1238
// Matched key should return above
1228
1239
return Qundef ;
Original file line number Diff line number Diff line change 1
1
# frozen_string_literal: true
2
2
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" )
6
3
# Testing behaviour specific to default GC
7
4
MSpec . register ( :exclude , "GC.stat increases major_gc_count after GC is run" )
8
5
MSpec . register ( :exclude , "GC.stat provides some number for heap_free_slots" )
You can’t perform that action at this time.
0 commit comments