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/branches/ruby_1_8@9944 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
1c34d5465a
commit
26899051a0
2 changed files with 6 additions and 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]
|
||||
|
||||
Thu Feb 16 01:10:48 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
|
||||
|
||||
* eval.c (backtrace): frame->orig_func may not be initialized.
|
||||
|
|
2
eval.c
2
eval.c
|
@ -10777,7 +10777,7 @@ rb_thread_wait_for(time)
|
|||
#ifdef ERESTART
|
||||
case ERESTART:
|
||||
#endif
|
||||
return;
|
||||
break;
|
||||
default:
|
||||
rb_sys_fail("sleep");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue