diff options
author | GNU Hurd wiki engine <web-hurd@gnu.org> | 2008-07-18 21:16:57 +0000 |
---|---|---|
committer | GNU Hurd wiki engine <web-hurd@gnu.org> | 2008-07-18 21:16:57 +0000 |
commit | 09a53cfa2eb955621ce83a3020504acbd8230e3a (patch) | |
tree | c560d5fab1155efbe637de229c33f7a14ab273f1 | |
parent | bccddde3eb50bc0bd88051f38532b09831870334 (diff) |
web commit by http://madhusudancs.myvidoop.com/
-rw-r--r-- | community/procfs.mdwn | 26 |
1 files changed, 14 insertions, 12 deletions
diff --git a/community/procfs.mdwn b/community/procfs.mdwn index 6dac6a43..fa9ef204 100644 --- a/community/procfs.mdwn +++ b/community/procfs.mdwn @@ -151,20 +151,19 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda Legend -* * - Has already been implemented. -* ** - I already know the where the information is exactly available. -* *** - I know where the information is available roughly, but need to look in detail to extract the exact information. +*** - I know where the information is available roughly, but need to look in detail to extract the exact information. -* **** - The information may be available, but needs to be searched to know where it will be. +**** - The information may be available, but needs to be searched to know where it will be. -* ***** - I fear information may not be available. +***** - I fear information may not be available. -* ~~~~~ - Need not be implemented. +~~~~~ - Need not be implemented. -File -/proc/<PID>/stat +####Already Implemented + +#####File - /proc/<PID>/stat * pid @@ -182,16 +181,19 @@ File * tpgid -* ** minflt +* minflt 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. + +####I already know the where the information is exactly available. + * *** cminflt The number of minor faults that the process’s waited-for children have made. -* ** majflt -The number of major faults the process has made which have required loading a memory page from -disk. * *** cmajflt The number of major faults that the process’s waited-for children have made. |