summaryrefslogtreecommitdiffstats
path: root/ProcessList.h
AgeCommit message (Collapse)Author
2008-03-09Add support for Linux per-process IO statistics,Hisham Muhammad
enabled with the --enable-taskstats flag, which requires a kernel compiled with taskstats support. Thanks to Tobias Oetiker!
2008-03-08BUGFIX: Fix display of CPU count for threaded processes.Hisham Muhammad
When user threads are hidden, process now shows the sum of processor usage for all processors. When user threads are displayed, each thread shows its own processor usage, including the root thread. (thanks to Bert Wesarg for the report) Also, add option to display thread colors differently.
2007-11-09IO-wait time now counts as idle time, which is a moreHisham Muhammad
accurate description. It is still available in split time, now called detailed CPU time. (thanks to Samuel Thibault for the report)
2007-05-17Fixes for /proc location, submitted by Florent ThoumieHisham Muhammad
2006-11-08Add lots of debugging asserts and try to clean up behavior of lists in general.Hisham Muhammad
Make dumping of proc data controlled by a separate debug define.
2006-10-04Allocate per-processor values in a contiguous chunk of memoryHisham Muhammad
2006-10-04Contribution by Philipp Richter: Display IO-Wait, IRQ and Soft-IRQ values in ↵Hisham Muhammad
status bar (minor modifications: default to false, add help)
2006-07-11Performance improvement hackathon: improve process comparison routines,Hisham Muhammad
disable useless code in release builds such as runtime type-checking on dynamic data structures and process fields that are not being computed, faster(?) method for verifying the process owner (still need to ensure correctness), don't destroy and create process objects for hidden kernel threads over and over. Phew. I shouldn't be doing all this today, but I could not resist.
2006-06-06Regenerated all headers.Hisham Muhammad
2006-06-05Use long long types to avoid overflowHisham Muhammad
2006-05-30Rename TypedVector to Vector, matching dit.Hisham Muhammad
2006-03-24* make debug targetHisham Muhammad
* Support for generating a /proc trace for debugging purposes.
2006-03-04Initial import.Hisham Muhammad