2 USING: help.markup help.syntax threads ;
5 { $description "Prints a list of running threads and their state. The “Waiting on” column displays one of the following:"
7 "“running” if the thread is the current thread"
8 "“yield” if the thread is waiting to run"
9 { "the string given to " { $link suspend } " if the thread is suspended" }
13 ARTICLE: "tools.threads" "Listing threads"
14 "Printing a list of running threads:"
15 { $subsection threads. } ;
17 ABOUT: "tools.threads"