diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | thread_win32.c | 3 |
2 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,8 @@ +Mon Jun 13 21:41:05 2011 KOSAKI Motohiro <[email protected]> + + * thread_win32.c (native_cond_signal): remove unnecessary rb_bug(). + It's addional fix for r32021. [Bug #4696] + Mon Jun 13 20:50:49 2011 Martin Bosslet <[email protected]> * test/openssl/test_ec.rb diff --git a/thread_win32.c b/thread_win32.c index 694b1e1f87..c0a026c7b6 100644 --- a/thread_win32.c +++ b/thread_win32.c @@ -414,9 +414,6 @@ native_cond_signal(rb_thread_cond_t *cond) SetEvent(e->event); } - else { - rb_bug("native_cond_signal: no pending threads"); - } } static void |