diff options
author | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-13 12:49:53 +0000 |
---|---|---|
committer | kosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2011-06-13 12:49:53 +0000 |
commit | e3672626bf0de4d7b65e539caf575a5dfac7a048 (patch) | |
tree | 6107df3478aeb29a2a861b592b7a7e1ce51f15fa | |
parent | 839614309de62f761c9c53418356cf8f310745bd (diff) |
* thread_win32.c (native_cond_signal): remove unnecessary rb_bug().
It's addional fix for r32021. [Bug #4696]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32059 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-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 |