1
0
Fork 0
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:
nobu 2011-12-05 05:33:49 +00:00
parent 1dea192775
commit bf0d8b7e64
2 changed files with 6 additions and 1 deletions

View file

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

View file

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