Skip to content

Commit

Permalink
* eval.c (rb_thread_wait_for): sleep should always sleep for
Browse files Browse the repository at this point in the history
  specified amount of time.  [ruby-talk:180067]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9945 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
matz committed Feb 17, 2006
1 parent 8f5278b commit 4839151
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Fri Feb 17 09:39:29 2006 Yukihiro Matsumoto <[email protected]>

* 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 <[email protected]>

* eval.c (rb_eval): NODE_OP_ASGN1 should allow splat in its
Expand Down
2 changes: 1 addition & 1 deletion eval.c
Original file line number Diff line number Diff line change
Expand Up @@ -10856,7 +10856,7 @@ rb_thread_wait_for(struct timeval time)
#ifdef ERESTART
case ERESTART:
#endif
return;
break;
default:
rb_sys_fail("sleep");
}
Expand Down

0 comments on commit 4839151

Please sign in to comment.