summaryrefslogtreecommitdiff
path: root/error.c
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-25 18:43:41 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-02-25 18:43:41 +0000
commitffbd120efdbcc65937413102086f28b4090e9ce5 (patch)
treef59f60718a5f96c14ace2f7b4ecedb019c9f5671 /error.c
parent1b7cb091493aaeeb5963b4612509a27b9d09d31d (diff)
* error.c: clarify a document of SignalException. Process.kill()
doesn't have any guarantee when signal will be delivered. [Bug #7951] [ruby-core:52864] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39501 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'error.c')
-rw-r--r--error.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/error.c b/error.c
index 4b678d8957..415c197013 100644
--- a/error.c
+++ b/error.c
@@ -1349,6 +1349,7 @@ syserr_eqq(VALUE self, VALUE exc)
*
* begin
* Process.kill('HUP',Process.pid)
+ * sleep
* rescue SignalException => e
* puts "received Exception #{e}"
* end