mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* thread.c (ruby_thread_s_pass): Fix typo.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32306 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e75e7fcc9f
commit
be9d096cc9
2 changed files with 8 additions and 4 deletions
|
@ -1,3 +1,7 @@
|
|||
Thu Jun 30 06:23:28 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* thread.c (ruby_thread_s_pass): Fix typo.
|
||||
|
||||
Thu Jun 30 06:16:53 2011 Eric Hodel <drbrain@segment7.net>
|
||||
|
||||
* lib/rdoc: Update to RDoc 3.8 which contains fixes for documentation
|
||||
|
|
8
thread.c
8
thread.c
|
@ -1240,11 +1240,11 @@ ruby_thread_has_gvl_p(void)
|
|||
}
|
||||
|
||||
/*
|
||||
* call-seq:
|
||||
* Thread.pass -> nil
|
||||
* call-seq:
|
||||
* Thread.pass -> nil
|
||||
*
|
||||
* Take the thrad scheduler a hint to pass execution to another thread.
|
||||
* A running thread may or may not switch. It depend on OS and processor.
|
||||
* Give the thread scheduler a hint to pass execution to another thread.
|
||||
* A running thread may or may not switch, it depends on OS and processor.
|
||||
*/
|
||||
|
||||
static VALUE
|
||||
|
|
Loading…
Reference in a new issue