factor/basis/tools/threads/threads-docs.factor

18 lines
553 B
Factor
Raw Normal View History

2008-02-27 20:24:50 -05:00
IN: tools.threads
USING: help.markup help.syntax threads ;
HELP: threads.
2009-01-27 00:20:27 -05:00
{ $description "Prints a list of running threads and their state. The “Waiting on” column displays one of the following:"
2008-02-27 20:24:50 -05:00
{ $list
2009-01-27 00:20:27 -05:00
"“running” if the thread is the current thread"
"“yield” if the thread is waiting to run"
2008-02-27 20:24:50 -05:00
{ "the string given to " { $link suspend } " if the thread is suspended" }
}
} ;
ARTICLE: "tools.threads" "Listing threads"
"Printing a list of running threads:"
{ $subsection threads. } ;
ABOUT: "tools.threads"