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

* eval.c (rb_thread_wait_for): sleep should always sleep for

specified amount of time.  [ruby-talk:180067]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
matz 2006-02-17 01:06:48 +00:00
parent 8f5278b525
commit 4839151263
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Feb 17 09:39:29 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_thread_wait_for): sleep should always sleep for
specified amount of time. [ruby-talk:180067]
Wed Feb 15 16:52:52 2006 Yukihiro Matsumoto <matz@ruby-lang.org> Wed Feb 15 16:52:52 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
* eval.c (rb_eval): NODE_OP_ASGN1 should allow splat in its * eval.c (rb_eval): NODE_OP_ASGN1 should allow splat in its

2
eval.c
View file

@ -10856,7 +10856,7 @@ rb_thread_wait_for(struct timeval time)
#ifdef ERESTART #ifdef ERESTART
case ERESTART: case ERESTART:
#endif #endif
return; break;
default: default:
rb_sys_fail("sleep"); rb_sys_fail("sleep");
} }