mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* signal.c (rb_f_kill): fixes typo. s/HAS_KILLPG/HAVE_KILLPG/.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40664 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
59a3943a67
commit
c0a30fcbf9
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
Sun May 12 17:05:18 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
|
* signal.c (rb_f_kill): fixes typo. s/HAS_KILLPG/HAVE_KILLPG/.
|
||||||
|
|
||||||
Sun May 12 17:03:27 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Sun May 12 17:03:27 2013 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* configure.in: abort if gettimeofday doesn't exist.
|
* configure.in: abort if gettimeofday doesn't exist.
|
||||||
|
|
2
signal.c
2
signal.c
|
@ -364,7 +364,7 @@ ruby_default_signal(int sig)
|
||||||
VALUE
|
VALUE
|
||||||
rb_f_kill(int argc, VALUE *argv)
|
rb_f_kill(int argc, VALUE *argv)
|
||||||
{
|
{
|
||||||
#ifndef HAS_KILLPG
|
#ifndef HAVE_KILLPG
|
||||||
#define killpg(pg, sig) kill(-(pg), (sig))
|
#define killpg(pg, sig) kill(-(pg), (sig))
|
||||||
#endif
|
#endif
|
||||||
int negative = 0;
|
int negative = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue