From 9da62b63d9377299db5240e007ccf4a1644e4233 Mon Sep 17 00:00:00 2001 From: kosaki Date: Mon, 5 Nov 2012 02:46:41 +0000 Subject: * thread_pthread.c (native_thread_init, native_thread_destroy): removed HAVE_PTHREAD_CONDATTR_INIT check because this silly #ifdef makes use-uninitialized-var issue and (2) native_cond_initialize() already have a right platform and caller don't need any additional care. [Bug #6825] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37474 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread_pthread.c | 4 ---- 1 file changed, 4 deletions(-) (limited to 'thread_pthread.c') diff --git a/thread_pthread.c b/thread_pthread.c index 68ca08f18f..49686afbed 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -466,18 +466,14 @@ Init_native_thread(void) static void native_thread_init(rb_thread_t *th) { -#ifdef HAVE_PTHREAD_CONDATTR_INIT native_cond_initialize(&th->native_thread_data.sleep_cond, RB_CONDATTR_CLOCK_MONOTONIC); -#endif ruby_thread_set_native(th); } static void native_thread_destroy(rb_thread_t *th) { -#ifdef HAVE_PTHREAD_CONDATTR_INIT native_cond_destroy(&th->native_thread_data.sleep_cond); -#endif } #ifndef USE_THREAD_CACHE -- cgit v1.2.3