mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* signal.c (reserved_signal_p): static.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33948 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1dea192775
commit
bf0d8b7e64
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
Mon Dec 5 14:33:41 2011 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* signal.c (reserved_signal_p): static.
|
||||
|
||||
Mon Dec 5 14:27:23 2011 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||
|
||||
* include/ruby/{subst.h,win32.h}, ext/socket/rubysocket.h: revert
|
||||
|
|
3
signal.c
3
signal.c
|
@ -863,7 +863,8 @@ trap_ensure(struct trap_arg *arg)
|
|||
}
|
||||
#endif
|
||||
|
||||
int reserved_signal_p(int signo)
|
||||
static int
|
||||
reserved_signal_p(int signo)
|
||||
{
|
||||
/* Synchronous signal can't deliver to main thread */
|
||||
#ifdef SIGSEGV
|
||||
|
|
Loading…
Reference in a new issue