From ed0876f66d98c3c2a6247a626d1889eba5d7cb2f Mon Sep 17 00:00:00 2001 From: kosaki Date: Wed, 29 Jun 2011 16:34:51 +0000 Subject: [PATCH] * 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 --- ChangeLog | 6 ++++++ thread.c | 16 ++-------------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/ChangeLog b/ChangeLog index 05d50463c5..4697476365 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Thu Jun 30 01:31:33 2011 KOSAKI Motohiro + + * 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 * thread.c (rb_thread_stop): change RDoc sample code. The old diff --git a/thread.c b/thread.c index 081dce4a02..0284ed6369 100644 --- a/thread.c +++ b/thread.c @@ -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 - * - * produces: - * - * 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