summaryrefslogtreecommitdiff
path: root/community
diff options
context:
space:
mode:
Diffstat (limited to 'community')
-rw-r--r--community/procfs.mdwn26
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/&lt;PID&gt;/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.