aboutsummaryrefslogtreecommitdiffstats
path: root/signal.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-12 04:52:25 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-06-12 04:52:25 +0000
commit223f5dbc59f9cb898777bb8e5efe809d966dc881 (patch)
treef302d31ad61acb16aece3788f803559c771e3348 /signal.c
parent5ac27de1a8b88d286f584796867ece7eaabdce88 (diff)
downloadruby-223f5dbc59f9cb898777bb8e5efe809d966dc881.tar.gz
remove ruby_kill() introduced for [Bug #7951].
* thread.c (rbuy_kill): removed. This function is used with SIGSEGV, SIGBUS, SIGKILL, SIGILL, SIGFPE and SIGSTOP and these signals are affect immediately. So that `kill(2)' is enough for them. * signal.c (rb_f_kill): ditto. * vm_core.h (rb_thread_t::interrupt_cond): removed because only `ruby_kill()' uses this field. * test/ruby/test_signal.rb: Without this patch sending SIGSTOP to own process wait another interrupt even if another process sends SIGCONT. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59066 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/signal.c b/signal.c
index 16c03e7b50..7baf742929 100644
--- a/signal.c
+++ b/signal.c
@@ -495,7 +495,7 @@ rb_f_kill(int argc, const VALUE *argv)
#ifdef SIGSTOP
case SIGSTOP:
#endif
- ruby_kill(pid, sig);
+ kill(pid, sig);
break;
default:
t = signal_ignored(sig);