2008-02-18 06:07:40 -05:00
|
|
|
! Copyright (C) 2008 Slava Pestov.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
|
|
|
IN: tools.threads
|
2008-02-18 08:30:16 -05:00
|
|
|
USING: threads kernel prettyprint prettyprint.config
|
2008-02-19 15:38:02 -05:00
|
|
|
io io.styles sequences assocs namespaces sorting boxes ;
|
2008-02-18 06:07:40 -05:00
|
|
|
|
|
|
|
: thread. ( thread -- )
|
|
|
|
dup thread-id pprint-cell
|
|
|
|
dup thread-name pprint-cell
|
2008-02-21 00:13:31 -05:00
|
|
|
thread-state "running" or
|
2008-02-19 15:38:02 -05:00
|
|
|
[ write ] with-cell ;
|
2008-02-18 06:07:40 -05:00
|
|
|
|
|
|
|
: threads. ( -- )
|
|
|
|
standard-table-style [
|
|
|
|
[
|
2008-02-21 00:13:31 -05:00
|
|
|
{ "ID" "Name" "Waiting on" }
|
2008-02-18 06:07:40 -05:00
|
|
|
[ [ write ] with-cell ] each
|
|
|
|
] with-row
|
|
|
|
|
2008-02-18 17:20:18 -05:00
|
|
|
threads >alist sort-keys values [
|
2008-02-18 06:07:40 -05:00
|
|
|
[ thread. ] with-row
|
|
|
|
] each
|
|
|
|
] tabular-output ;
|