summaryrefslogtreecommitdiff
path: root/thread.c
diff options
context:
space:
mode:
authorko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 08:17:17 +0000
committerko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-09-23 08:17:17 +0000
commitb9a12116fb2da007ef9059befc9b1b314bb079ed (patch)
tree9269306b6508b72e371146550a82350a74815bd5 /thread.c
parent68a533c61164392a9524d19f11f163a6c7e811ba (diff)
* thread.c, include/ruby/intern.h (rb_thread_interrupted): added.
* io.c: use VALUE of thead instead of rb_tread_t to check interrupts. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19477 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'thread.c')
-rw-r--r--thread.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/thread.c b/thread.c
index 9b0a91ee7b..7416fabb25 100644
--- a/thread.c
+++ b/thread.c
@@ -899,6 +899,15 @@ rb_thread_check_trap_pending(void)
return GET_THREAD()->exec_signal != 0;
}
+/* This function can be called in blocking region. */
+int
+rb_thread_interrupted(VALUE thval)
+{
+ rb_thread_t *th;
+ GetThreadPtr(thval, th);
+ return RUBY_VM_INTERRUPTED(th);
+}
+
struct timeval rb_time_timeval();
void