We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6a531 commit c4507e5Copy full SHA for c4507e5
CHANGELOG.md
@@ -93,6 +93,7 @@ Compatibility:
93
* Update to JCodings 1.0.58 and Joni 2.1.44 (@eregon).
94
* Add `MatchData#match` and `MatchData#match_length` (#2733, @horakivo).
95
* Add `StructClass#keyword_init?` method (#2377, @moste00).
96
+* Deprecate `rb_gc_force_recycle` and make it a no-op function (#2733, @moste00).
97
98
Performance:
99
lib/cext/ABI_check.txt
@@ -1 +1 @@
1
-4
+5
src/main/c/cext/gc.c
@@ -53,8 +53,7 @@ void rb_gc(void) {
53
}
54
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);
+ /* no-op */
58
59
60
VALUE rb_gc_latest_gc_info(VALUE key) {
0 commit comments