From 5dca7d86b9c30f319eb31c02d780237101f8ea07 Mon Sep 17 00:00:00 2001 From: normal Date: Wed, 15 Aug 2018 04:32:36 +0000 Subject: thread_pthread.c: additional UBF_TIMER == UBF_TIMER_PTHREAD guards Hopefully this makes the code easier-to-follow [ruby-core:88475] [Misc #14937] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64371 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 75ce110063..d48c57ce37 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -1596,7 +1596,8 @@ rb_timer_create(rb_pid_t current) else rb_warn("timer_create failed: %s, signals racy", strerror(errno)); #endif - rb_timer_pthread_create(current); + if (UBF_TIMER == UBF_TIMER_PTHREAD) + ubf_timer_pthread_create(current); } static void @@ -1620,7 +1621,7 @@ rb_thread_create_timer_thread(void) sigwait_th = THREAD_INVALID; timer_thread_pipe.owner_process = current; } - else { + else if (UBF_TIMER == UBF_TIMER_PTHREAD) { /* UBF_TIMER_PTHREAD needs to recreate after fork */ rb_timer_pthread_create(current); } -- cgit v1.2.3