1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
kosaki 2013-02-25 18:43:41 +00:00
parent 1b7cb09149
commit ffbd120efd
2 changed files with 7 additions and 0 deletions

View file

@ -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.

View file

@ -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