1832691 Members
2528 Online
110043 Solutions
New Discussion

Re: columns in top...

 
SOLVED
Go to solution
K.C. Chan
Trusted Contributor

columns in top...

all,
I have:
Cpu(s): 7.0% us, 1.0% sy, 0.6% ni, 91.2% id, 0.2% wa, 0.1% hi, 0.0% si

I am interested in what "% hi" and "% si" mean?

Thanks.
Reputation of a thousand years can be determined by the conduct of an hour
2 REPLIES 2
Alessandro Pilati
Esteemed Contributor
Solution

Re: columns in top...

Hi Chan,
here it is an explanation:

us = regular user apps
sy = system (general kernel stuff)
ni = nice user apps (low-priority tasks)
id = idle
wa = waiting for IO to complete
hi = hard interrupt (IRQ) handlers
si = soft interrupt handlers

( If you consider vmstat, it mixes ni into us, and hi and si into sy. )

Differences between hard and soft interrupts?
Check the file in attachment, and this link:

http://cs1.cs.nyu.edu/web/Research/Theses/edler_jan.pdf


Best regards,
Alessandro
if you don't try, you'll never know if you are able to
K.C. Chan
Trusted Contributor

Re: columns in top...

Thanks for your info.
Reputation of a thousand years can be determined by the conduct of an hour