summaryrefslogtreecommitdiff
path: root/signal.c
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-15 08:49:23 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2001-05-15 08:49:23 +0000
commitbe256c6f5a0180ac3eef05075f8b3977d29dfcb7 (patch)
tree80b8fb91a7a668c70f42757bfc8d563bf63242ba /signal.c
parent91fdbecbdaa25387e19050dbf9234d245c8246b8 (diff)
* array.c (rb_ary_and): should not push frozen key string.
* array.c (rb_ary_or): ditto. * eval.c (rb_thread_schedule): should save context before raising deadlock, saved context for current thread might be obsolete. * time.c (make_time_t): non DST timezone shift supported (hopefully). * signal.c: SIGINFO added. * eval.c (rb_ensure): should not SEGV when prot_tag is NULL. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_6@1395 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'signal.c')
-rw-r--r--signal.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/signal.c b/signal.c
index 48849a6554..1f820dac55 100644
--- a/signal.c
+++ b/signal.c
@@ -163,6 +163,9 @@ static struct signals {
#ifdef SIGSOUND
"SOUND", SIGSOUND,
#endif
+#ifdef SIGINFO
+ "INFO", SIGINFO,
+#endif
NULL, 0,
};