1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* 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
This commit is contained in:
kosaki 2011-06-13 12:49:53 +00:00
parent 839614309d
commit e3672626bf
2 changed files with 5 additions and 3 deletions

View file

@ -1,3 +1,8 @@
Mon Jun 13 21:41:05 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* 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 <Martin.Bosslet@googlemail.com>
* test/openssl/test_ec.rb

View file

@ -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