aboutsummaryrefslogtreecommitdiffstats
path: root/signal.c
diff options
context:
space:
mode:
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/signal.c b/signal.c
index 6441c0a8cf..8e76090487 100644
--- a/signal.c
+++ b/signal.c
@@ -819,6 +819,13 @@ install_sighandler(int signum, sighandler_t handler)
}
}
+#if 0
+/*
+ * If you write a handler which works on any native thread
+ * (even if the thread is NOT a ruby's one), please enable
+ * this function and use it to install the handler, instead
+ * of `install_sighandler()'.
+ */
#ifdef HAVE_NATIVETHREAD
static void
install_nativethread_sighandler(int signum, sighandler_t handler)
@@ -837,6 +844,7 @@ install_nativethread_sighandler(int signum, sighandler_t handler)
}
}
#endif
+#endif
static void
init_sigchld(int sig)