diff options
Diffstat (limited to 'community/procfs.mdwn')
-rw-r--r-- | community/procfs.mdwn | 48 |
1 files changed, 28 insertions, 20 deletions
diff --git a/community/procfs.mdwn b/community/procfs.mdwn index 472c66c9..b12f4078 100644 --- a/community/procfs.mdwn +++ b/community/procfs.mdwn @@ -210,6 +210,26 @@ 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) + +#####File - /proc/<PID>/statm + +* size +> total program size + +* resident +> resident set size + +* lib +> library + +* dt +> dirty pages + +#####Other Per-PID Files + +#####* /proc/<PID>/cwd ####I already know the where the information is exactly available. @@ -220,15 +240,8 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda * cstime > The number of jiffies that this process’s waited-for children have been scheduled in kernel mode. -#####File - /proc/<PID>/statm - -* resident -> resident set size - #####Other Per-PID Files -#####* /proc/<PID>/cwd - #####* /proc/<PID>/exe #####* /proc/<PID>/environ @@ -266,9 +279,6 @@ Clone URL: [git://github.com/madhusudancs/procfs.git](git://github.com/madhusuda #####File - /proc/<PID>/statm -* size -> total program size - * text > text (code) @@ -333,19 +343,17 @@ 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 - -#### Need not be implemented. +###Newly added to Roadmap(but these were the original goals of the project) -#####File - /proc/<PID>/statm - -* lib -> library (not required) +#### procps tools need to be ported so that they run on top of the procfs -* dt -> dirty pages (not required) +> ##### pgrep - Done +> ##### pkill - Done +> ##### killall - Done +> ##### pstree - Done +> ##### top - In progress +> ##### free - Needs to be worked on ------ |