summaryrefslogtreecommitdiff
path: root/rubysig.h
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-27 18:24:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-09-27 18:24:11 +0000
commitb1d08eabdad09ff5b6d955b369331e4c43a6a187 (patch)
tree2182fd263eaa391135d4609478267f96e15bb987 /rubysig.h
parent0377141da6b0bb62e0fcde2e36bf70655c88e749 (diff)
* rubysig.h: fixed build problem with --enable-pthread on platforms
which don't have setitimer(). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9320 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'rubysig.h')
-rw-r--r--rubysig.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/rubysig.h b/rubysig.h
index 99317f37e8..840e1487a4 100644
--- a/rubysig.h
+++ b/rubysig.h
@@ -79,7 +79,7 @@ void rb_trap_restore_mask(void);
RUBY_EXTERN int rb_thread_critical;
void rb_thread_schedule(void);
-#if defined(HAVE_SETITIMER)
+#if defined(HAVE_SETITIMER) || defined(_THREAD_SAFE)
RUBY_EXTERN int rb_thread_pending;
# define CHECK_INTS do {\
if (!rb_prohibit_interrupt) {\