From e2a930c73a77c39f1b2aa6fa405afbab583abea2 Mon Sep 17 00:00:00 2001 From: naruse Date: Sat, 13 Jun 2015 10:58:14 +0000 Subject: add Thread.name and Thread.name= docs Feature #11251 [ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@50868 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- thread.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'thread.c') diff --git a/thread.c b/thread.c index 5218ba7262..e59727a506 100644 --- a/thread.c +++ b/thread.c @@ -2719,7 +2719,7 @@ rb_thread_safe_level(VALUE thread) * call-seq: * thr.name -> string * - * Dump the name, id, and status of _thr_ to a string. + * show the name of the thread. */ static VALUE @@ -2734,7 +2734,8 @@ rb_thread_getname(VALUE thread) * call-seq: * thr.name=(name) -> string * - * Dump the name, id, and status of _thr_ to a string. + * set given name to the ruby thread. + * On some platform, it may set the name to pthread and/or kernel. */ static VALUE -- cgit v1.2.3