diff options
| author | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-17 01:06:48 +0000 |
|---|---|---|
| committer | matz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2006-02-17 01:06:48 +0000 |
| commit | 651a2bddd5191ab433701212c096cfc87a8896b3 (patch) | |
| tree | 92557bf81070b03cd85921b9f9a17964507339ba | |
| parent | ff0e9cea81113319f2273c880e8e28a48fef700d (diff) | |
| download | ruby-651a2bddd5191ab433701212c096cfc87a8896b3.tar.gz ruby-651a2bddd5191ab433701212c096cfc87a8896b3.tar.xz ruby-651a2bddd5191ab433701212c096cfc87a8896b3.zip | |
* eval.c (rb_thread_wait_for): sleep should always sleep for
specified amount of time. [ruby-talk:180067]
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | eval.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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> * eval.c (rb_eval): NODE_OP_ASGN1 should allow splat in its @@ -10856,7 +10856,7 @@ rb_thread_wait_for(struct timeval time) #ifdef ERESTART case ERESTART: #endif - return; + break; default: rb_sys_fail("sleep"); } |
