Tell me more ×
Super User is a question and answer site for computer enthusiasts and power users. It's 100% free, no registration required.

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

share|improve this question

1 Answer

up vote 3 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>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.