File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ Compatibility:
95
95
* Add ` StructClass#keyword_init? ` method (#2377 , @moste00 ).
96
96
* Support optional ` level ` argument for ` File.dirname ` method (#2733 , @moste00 ).
97
97
* Add ` Thread::Backtrace.limit ` method (#2733 , @andrykonchin ).
98
+ * Deprecate ` rb_gc_force_recycle ` and make it a no-op function (#2733 , @moste00 ).
98
99
99
100
Performance:
100
101
Original file line number Diff line number Diff line change 1
- 4
1
+ 5
Original file line number Diff line number Diff line change @@ -53,8 +53,7 @@ void rb_gc(void) {
53
53
}
54
54
55
55
void rb_gc_force_recycle (VALUE obj ) {
56
- // Comments in MRI imply rb_gc_force_recycle functions as a GC guard
57
- RB_GC_GUARD (obj );
56
+ /* no-op */
58
57
}
59
58
60
59
VALUE rb_gc_latest_gc_info (VALUE key ) {
You can’t perform that action at this time.
0 commit comments