thread_pthread.c: revert r64123

* thread_pthread.c (USE_NATIVE_SLEEP_COND): revised wrongly removed
  line with the ifndef guard.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@64131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2018-07-30 15:21:01 +00:00
Родитель a038bf238b
Коммит 09df9972dc
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -1565,6 +1565,10 @@ rb_thread_create_mjit_thread(void (*worker_func)(void))
return ret;
}
#ifndef USE_NATIVE_SLEEP_COND
#define USE_NATIVE_SLEEP_COND (1)
#endif
#if USE_NATIVE_SLEEP_COND
rb_nativethread_cond_t *
rb_sleep_cond_get(const rb_execution_context_t *ec)