diff options
author | Koichi Sasada <[email protected]> | 2019-05-28 15:57:20 +0900 |
---|---|---|
committer | Koichi Sasada <[email protected]> | 2019-05-28 15:57:20 +0900 |
commit | 8a2b497e3b8d9c9be27278081526cace50490140 () | |
tree | fdd8f800ce68d9cf8cf778fc91f49aec0b7ad356 /include/ruby/intern.h | |
parent | 2562b7d7cd6621970fed1ad72d87f8d23d50d398 (diff) |
remove obsolete rb_gc_finalize_deferred().
rb_gc_finalize_deferred() is remained for compatibility with C-extensions. However, this function is no longer working from Ruby 2.4 (crash with SEGV immediately). So remove it completely.
-rw-r--r-- | include/ruby/intern.h | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -520,7 +520,6 @@ VALUE rb_gc_location(VALUE); void rb_gc_force_recycle(VALUE); void rb_gc(void); void rb_gc_copy_finalizer(VALUE,VALUE); -void rb_gc_finalize_deferred(void); void rb_gc_call_finalizer_at_exit(void); VALUE rb_gc_enable(void); VALUE rb_gc_disable(void); |