From c6f11108448bb152613807e622af35bddaa19084 Mon Sep 17 00:00:00 2001 From: nobu Date: Thu, 10 Apr 2008 01:27:25 +0000 Subject: * thread_pthread.c (native_sleep): sleep_cond is initialized at creation. [ruby-Patches-19361]. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@15945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ thread_pthread.c | 1 - version.h | 6 +++--- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index 7049eaa31..978746901 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Apr 10 10:27:24 2008 Nobuyoshi Nakada + + * thread_pthread.c (native_sleep): sleep_cond is initialized at + creation. [ruby-Patches-19361]. + Wed Apr 9 14:43:26 2008 Nobuyoshi Nakada * thread.c (lock_func): optimized and checks for interrupt_flag. diff --git a/thread_pthread.c b/thread_pthread.c index 62bddb722..b26148bf4 100644 --- a/thread_pthread.c +++ b/thread_pthread.c @@ -416,7 +416,6 @@ native_sleep(rb_thread_t *th, struct timeval *tv) } th->status = THREAD_STOPPED; - pthread_cond_init(&th->native_thread_data.sleep_cond, 0); thread_debug("native_sleep %ld\n", tv ? tv->tv_sec : -1); GVL_UNLOCK_BEGIN(); diff --git a/version.h b/version.h index c05668f0a..30be020bd 100644 --- a/version.h +++ b/version.h @@ -1,7 +1,7 @@ #define RUBY_VERSION "1.9.0" -#define RUBY_RELEASE_DATE "2008-04-09" +#define RUBY_RELEASE_DATE "2008-04-10" #define RUBY_VERSION_CODE 190 -#define RUBY_RELEASE_CODE 20080409 +#define RUBY_RELEASE_CODE 20080410 #define RUBY_PATCHLEVEL 0 #define RUBY_VERSION_MAJOR 1 @@ -9,7 +9,7 @@ #define RUBY_VERSION_TEENY 0 #define RUBY_RELEASE_YEAR 2008 #define RUBY_RELEASE_MONTH 4 -#define RUBY_RELEASE_DAY 9 +#define RUBY_RELEASE_DAY 10 #ifdef RUBY_EXTERN RUBY_EXTERN const char ruby_version[]; -- cgit