aboutsummaryrefslogtreecommitdiffstats
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
parent1b7cb091493aaeeb5963b4612509a27b9d09d31d (diff)
downloadruby-ffbd120efdbcc65937413102086f28b4090e9ce5.tar.gz
* 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
-rw-r--r--ChangeLog6
-rw-r--r--error.c1
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 9f27c8deda..0ba9ce8cac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Feb 20 17:22:21 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
+
+ * error.c: clarify a document of SignalException. Process.kill()
+ doesn't have any guarantee when signal will be delivered.
+ [Bug #7951] [ruby-core:52864]
+
Mon Feb 25 23:51:04 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* include/ruby/version.h: bump RUBY_API_VERSION same as RUBY_VERSION.
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