public inbox for gentoo-user@lists.gentoo.org
 help / color / mirror / Atom feed
* Re: [gentoo-user] Help interpreting top(1) display
@ 2005-07-06  9:07 Alexander Kirillov
  0 siblings, 0 replies; 2+ messages in thread
From: Alexander Kirillov @ 2005-07-06  9:07 UTC (permalink / raw
  To: gentoo-user

top reads some tick counters from /proc/stat
provided by the kernel and defined as

struct cpu_usage_stat {
	cputime64_t user;
	cputime64_t nice;
	cputime64_t system;
	cputime64_t softirq;
	cputime64_t irq;
	cputime64_t idle;
	cputime64_t iowait;
	cputime64_t steal;
};

in kernel_stat.h

You probably can guess the meaning better than I could:

# time spent waiting for IO to complete
wa=iowait

# time spent within hardware interrupt handlers
hi=irq

# time spent within other critical sections within the kernel
si=softirq

-- 
gentoo-user@gentoo.org mailing list



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2005-07-06 21:42 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <9acccfe505070510095411c80a@mail.gmail.com>
     [not found] ` <5c751a23050705110832ef5462@mail.gmail.com>
     [not found]   ` <9acccfe505070517071e0be328@mail.gmail.com>
2005-07-06 21:37     ` [gentoo-user] Help interpreting top(1) display Adrian Chelar
2005-07-06  9:07 Alexander Kirillov

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox