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

* thread.c (thread_s_pass): change RDoc description and remove

a sample code. The actual implementaion never behave as explained by
  an example. It's a documentation bug.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32301 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kosaki 2011-06-29 16:34:51 +00:00
parent 3a9117011f
commit ed0876f66d
2 changed files with 8 additions and 14 deletions

View file

@ -1,3 +1,9 @@
Thu Jun 30 01:31:33 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (thread_s_pass): change RDoc description and remove
a sample code. The actual implementaion never behave as explained by
an example. It's a documentation bug.
Thu Jun 30 00:54:33 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
* thread.c (rb_thread_stop): change RDoc sample code. The old

View file

@ -1245,20 +1245,8 @@ ruby_thread_has_gvl_p(void)
* call-seq:
* Thread.pass -> nil
*
* Invokes the thread scheduler to pass execution to another thread.
*
* a = Thread.new { print "a"; Thread.pass;
* print "b"; Thread.pass;
* print "c" }
* b = Thread.new { print "x"; Thread.pass;
* print "y"; Thread.pass;
* print "z" }
* a.join
* b.join
*
* <em>produces:</em>
*
* axbycz
* 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.
*/
static VALUE