From bb1e08e770e6d3c6528e9d5041b52016b94bebd2 Mon Sep 17 00:00:00 2001 From: normal Date: Sun, 16 Dec 2018 12:33:44 +0000 Subject: [PATCH] thread_pthread (ubf_timer_destroy): use VM_ASSERT Don't need the overhead at runtime git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@66417 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/thread_pthread.c b/thread_pthread.c index b0160090d8..745c55544e 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -1795,9 +1795,7 @@ ubf_timer_destroy(void) if (timer_delete(timer_posix.timerid) < 0) rb_sys_fail("timer_delete"); - if (ATOMIC_EXCHANGE(timer_posix.state, RTIMER_DEAD) != RTIMER_DEAD) { - rb_bug("YOU KNOW I'M NOT DEAD\n"); - } + VM_ASSERT(ATOMIC_EXCHANGE(timer_posix.state, RTIMER_DEAD) == RTIMER_DEAD); } #elif UBF_TIMER == UBF_TIMER_PTHREAD int err;