summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 18:07:08 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-03-25 18:07:08 +0000
commitd014f463cf6d5dd51aa2ce56385fc08ac5c121af (patch)
tree7d41c2db84af1220161c42569fce993b1b957c21 /ext
parented20b2561ce9a387da6de5f93a7b7931cd136efd (diff)
merge revision(s) 57477,57478,57479,57492: [Backport #12405]
use TRUE/FALSE. define rb_thread_sleep_deadly_allow_spurious_wakeup(). * thread.c, thread_sync.c: define new function rb_thread_sleep_deadly_allow_spurious_wakeup() and use it instead of using sleep_forever() directly. allow Queue operation in trap. * thread_sync.c: allow spurious wakeup to check Queue status just after trap. [Bug #12405] * test/thread/test_queue.rb: add a test for it. test_queue.rb: fix portability * test/thread/test_queue.rb (test_queue_with_trap): fix portability. use SIGINT instead of SIGUSR2 which is supported on not all platforms. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_2@58115 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'ext')
-rw-r--r--ext/thread/thread.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/thread/thread.c b/ext/thread/thread.c
index b8656a1d97..2a2db3f760 100644
--- a/ext/thread/thread.c
+++ b/ext/thread/thread.c
@@ -269,7 +269,8 @@ queue_delete_from_waiting(struct waiting_delete *p)
static VALUE
queue_sleep(VALUE arg)
{
- rb_thread_sleep_deadly();
+ extern void rb_thread_sleep_deadly_allow_spurious_wakeup(void);
+ rb_thread_sleep_deadly_allow_spurious_wakeup();
return Qnil;
}