diff options
author | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-10 05:01:08 +0000 |
---|---|---|
committer | nagai <nagai@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-07-10 05:01:08 +0000 |
commit | c258ca6012ac4df80e1387b780e4586a6496554a (patch) | |
tree | 3e7f5e7d7de29bba2c229fb8cea32b445e27d92e /signal.c | |
parent | c1699f2a2ec9ecfe22fbfde7bd591c4715b317cf (diff) | |
download | bundler-c258ca6012ac4df80e1387b780e4586a6496554a.tar.gz |
* signal.c (install_nativethread_sighandler): commented out.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@10501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'signal.c')
-rw-r--r-- | signal.c | 8 |
1 files changed, 8 insertions, 0 deletions
@@ -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) |