summaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
authorPeter Zhu <[email protected]>2025-06-04 09:55:03 -0400
committerPeter Zhu <[email protected]>2025-06-04 14:07:19 -0400
commit99cc100cdf4f424faea8caa33beb0d14171c5dcb (patch)
tree99b7bc6b8dfd10f1866ca28b8c4500e764baa566 /signal.c
parent3b5787a97f41b122014fe74b98add300bacdc366 (diff)
Remove dead rb_malloc_info_show_results
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13516
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/signal.c b/signal.c
index ad21ef25c2..8dd7dad102 100644
--- a/signal.c
+++ b/signal.c
@@ -403,7 +403,6 @@ interrupt_init(int argc, VALUE *argv, VALUE self)
return rb_call_super(2, args);
}
-void rb_malloc_info_show_results(void); /* gc.c */
#if defined(USE_SIGALTSTACK) || defined(_WIN32)
static void reset_sigmask(int sig);
#endif
@@ -414,7 +413,6 @@ ruby_default_signal(int sig)
#if USE_DEBUG_COUNTER
rb_debug_counter_show_results("killed by signal.");
#endif
- rb_malloc_info_show_results();
signal(sig, SIG_DFL);
#if defined(USE_SIGALTSTACK) || defined(_WIN32)