From 1b0f69032fdfa49aa229ba1c265d0fe4c9a68aae Mon Sep 17 00:00:00 2001 From: matz Date: Wed, 28 Nov 2001 14:56:32 +0000 Subject: * eval.c (rb_thread_select): should subtract timeofday() from limit, not reverse. * util.c (scan_hex): x is not a hexadecimal digit. * eval.c (rb_thread_schedule): should treat the case that select(2) returns 0, if a thread is under both WAIT_SELECT and WAIT_TIME. Jakub Travnik actually fixed this bug. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@1862 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 3c3b48e0d..f876b4b9f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,19 @@ +Wed Nov 28 18:46:28 2001 Ville Mattila + + * eval.c (rb_thread_select): should subtract timeofday() from + limit, not reverse. + +Wed Nov 28 16:03:28 2001 K.Kosako + + * util.c (scan_hex): x is not a hexadecimal digit. + +Wed Nov 28 13:38:04 2001 Yukihiro Matsumoto + + * eval.c (rb_thread_schedule): should treat the case that + select(2) returns 0, if a thread is under both WAIT_SELECT and + WAIT_TIME. Jakub Travnik actually fixed + this bug. + Tue Nov 27 02:15:25 2001 Yukihiro Matsumoto * marshal.c (w_float): must distinguish -0.0 from 0.0. -- cgit