summaryrefslogtreecommitdiff
path: root/community/procfs.mdwn
diff options
context:
space:
mode:
Diffstat (limited to 'community/procfs.mdwn')
-rw-r--r--community/procfs.mdwn50
1 files changed, 32 insertions, 18 deletions
diff --git a/community/procfs.mdwn b/community/procfs.mdwn
index 472c66c9..1139c718 100644
--- a/community/procfs.mdwn
+++ b/community/procfs.mdwn
@@ -210,8 +210,11 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda
* cnswap
> Cumulative nswap for child processes (not maintained).
+* flags
+> PF_* fields defined in (Not Linux compatible, but nearly says the something Linux says)
-####I already know the where the information is exactly available.
+* nice
+> The nice value ranges from 19 to -19.
* cutime
> The number of jiffies that this process’s waited-for children have been scheduled in user
@@ -222,12 +225,21 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda
#####File - /proc/<PID>/statm
+* size
+> total program size
+
* resident
> resident set size
-#####Other Per-PID Files
+* lib
+> library
-#####* /proc/<PID>/cwd
+* dt
+> dirty pages
+
+####I already know the where the information is exactly available.
+
+#####Other Per-PID Files
#####* /proc/<PID>/exe
@@ -246,9 +258,6 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda
* cmajflt
> The number of major faults that the process’s waited-for children have made.
-* nice
-> The nice value ranges from 19 to -19.
-
* signal
> The bitmap of pending signals.
@@ -266,12 +275,13 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda
#####File - /proc/<PID>/statm
-* size
-> total program size
-
* text
> text (code)
+#####Other Per-PID Files
+
+#####* /proc/<PID>/cwd
+
####The information may be available, but needs to be searched to know where it will be.
#####File - /proc/<PID>/stat
@@ -333,19 +343,23 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda
* delayacct_blkio_ticks
> Aggregated block I/O delays, measured in clock ticks (centiseconds).
-* flags
-> PF_* fields defined in
+###Newly added to Roadmap(but these were the original goals of the project)
-#### Need not be implemented.
+#### procps tools need to be ported so that they run on top of the procfs
-#####File - /proc/<PID>/statm
+> ##### pgrep                 -  Done
+> ##### pkill                 -  Done
+> ##### killall               -  Done
+> ##### pstree                -  Done
+> ##### top                   -  Mostly Done (except per-PID shared memory field, and non per-PID caches and buffers field)
+> ##### free                  -  Mostly Done (Ditto from above)
+> ##### htop                  -  Mostly Done (Ditto again)
+> ##### watch                 -  Done
+> ##### tload                 -  I think it is done. (Need someone to test it)
+> ##### libgtop               -  In progress
+> ##### gnome-system-moitor   -  In progress
-* lib
-> library (not required)
-
-* dt
-> dirty pages (not required)
------