From f19553bfe2ee30d10a504f706cf49d4371ee710a Mon Sep 17 00:00:00 2001 From: GNU Hurd wiki engine Date: Sun, 20 Jul 2008 04:49:21 +0000 Subject: web commit by http://madhusudancs.myvidoop.com/ --- community/procfs.mdwn | 62 ++++++++++++++++++++++++++------------------------- 1 file changed, 32 insertions(+), 30 deletions(-) (limited to 'community') diff --git a/community/procfs.mdwn b/community/procfs.mdwn index f2ec08b6..788a4b89 100644 --- a/community/procfs.mdwn +++ b/community/procfs.mdwn @@ -182,56 +182,57 @@ Legend * tpgid * minflt -The number of minor faults the process has made which have not required loading a memory page -from disk. +> The number of minor faults the process has made which have not required loading a memory page +> from disk. * majflt -The number of major faults the process has made which have required loading a memory page from -disk. +> The number of major faults the process has made which have required loading a memory page from +> disk. * utime -The number of jiffies that this process has been scheduled in user mode. +> The number of jiffies that this process has been scheduled in user mode. * stime -The number of jiffies that this process has been scheduled in kernel mode. +> The number of jiffies that this process has been scheduled in kernel mode. -####I already know the where the information is exactly available. +* priority +> The standard nice value, plus fifteen. The value is never negative in the kernel. -* *** cminflt -The number of minor faults that the process’s waited-for children have made. +* num_threads +> Number of threads in this process. +* starttime +> The time in jiffies the process started after system boot. -* *** cmajflt -The number of major faults that the process’s waited-for children have made. +* vsize +> Virtual memory size in bytes. +* rss +> Resident Set Size: number of pages the process has in real memory, minus 3 for administrative +> purposes. This is just the pages which count towards text, data, or stack space. This does not +> include pages which have not been demand-loaded in, or which are swapped out. -* ** cutime -The number of jiffies that this process’s waited-for children have been scheduled in user -mode. +####I already know the where the information is exactly available. -* ** cstime -The number of jiffies that this process’s waited-for children have been scheduled in kernel mode. -* ** priority -The standard nice value, plus fifteen. The value is never negative in the kernel. +* cutime +> The number of jiffies that this process’s waited-for children have been scheduled in user +> mode. -* *** nice -The nice value ranges from 19 to -19. +* cstime +> The number of jiffies that this process’s waited-for children have been scheduled in kernel mode. -* ** num_threads -Number of threads in this process. +* *** cminflt +The number of minor faults that the process’s waited-for children have made. -* *** starttime -The time in jiffies the process started after system boot. -* **** vsize -Virtual memory size in bytes. +* *** cmajflt +The number of major faults that the process’s waited-for children have made. + -* ** rss -Resident Set Size: number of pages the process has in real memory, minus 3 for administrative -purposes. This is just the pages which count towards text, data, or stack space. This does not -include pages which have not been demand-loaded in, or which are swapped out. +* *** nice +The nice value ranges from 19 to -19. * *** signal The bitmap of pending signals. @@ -247,6 +248,7 @@ The bitmap of caught signals. * ** policy Scheduling policy (see sched_setscheduler(2)). + File /proc//statm -- cgit v1.2.3