summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--thread.c16
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 <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
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
- *
- * <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