up vote 1 down vote favorite
share [g+] share [fb]

How do I monitor or view the thread count of a certain process on AIX?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted
ps -o thcount -p <process id>

That would give you only the thread count.

Play with other field specifiers for the "-o" option (see 'man ps') for other info. For instance

ps -o pid,comm,user,thcount -p <process id>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown