From 86875c2bcb32084069d35e95fffafde60b69769b Mon Sep 17 00:00:00 2001 From: hsbt Date: Wed, 4 Nov 2015 08:33:29 +0000 Subject: * lib/debug.rb: Add documentation for #thread_list_all. [Misc #11580][ci skip] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52451 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 5 +++++ lib/debug.rb | 23 +++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/ChangeLog b/ChangeLog index bb489ff071..1e163af491 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Wed Nov 4 17:33:24 2015 SHIBATA Hiroshi + + * lib/debug.rb: Add documentation for #thread_list_all. + [Misc #11580][ci skip] + Wed Nov 4 15:45:59 2015 SHIBATA Hiroshi * class.c: fix documentation for rb_define_class{_id}_under. diff --git a/lib/debug.rb b/lib/debug.rb index fcbf849f0d..05614e3f2b 100644 --- a/lib/debug.rb +++ b/lib/debug.rb @@ -1008,6 +1008,29 @@ EOHELP @stdout.print "\n" end + # Prints all threads in @thread_list to @stdout. Returns a sorted array of + # values from the @thread_list hash. + # + # While in the debugger you can list all of + # the threads with: DEBUGGER__.thread_list_all + # + # (rdb:1) DEBUGGER__.thread_list_all + # +1 # debug_me.rb.rb:3 + # 2 # + # 3 # + # [1, 2, 3] + # + # Your current thread is indicated by a + + # + # Additionally you can list all threads with th l + # + # (rdb:1) th l + # +1 # debug_me.rb:3 + # 2 # debug_me.rb:3 + # 3 # debug_me.rb:3 + # + # See DEBUGGER__ for more usage. + def thread_list_all for th in @thread_list.values.sort thread_list(th) -- cgit v1.2.3