summaryrefslogtreecommitdiffstats
path: root/htop.c
AgeCommit message (Collapse)Author
2014-04-24Make blue text more readable. Closes #55.Hisham Muhammad
2014-04-22Fix compiler complaints.Hisham Muhammad
2014-04-21Remove use of usleep, which is sadly obsolete.Hisham Muhammad
2014-04-21avoid strtok and reduce scope of variables.Hisham Muhammad
2014-04-09Improve discoverability of the expand/collapse feature.Hisham Muhammad
It is now accessible via F6 when on tree view (as a bonus, it is now also reachable via the mouse). The function bar now dynamically changes to reflect the toggle nature of the tree-view mode (F5) and the F6 key serves as expand/collapse when on tree mode, and its previous behavior of bringing up the "Sort By" menu (which only made sense on non-tree mode). Users wishing to go to the "Sort By" menu straight from Tree View can still do so with the "<" and ">" keys (the top-compatible keys for sort selection).
2014-04-09Add missing check for return value and be more conservative in constructs to ↵Hisham Muhammad
avoid future slips of this kind.
2014-01-14Refactor the drawing of the help screenHisham Muhammad
2014-01-14First new feature of the git era! "c" key tags all children of a process.Hisham Muhammad
2013-12-18Make CPU meter optionally account guest time in its percentagesHisham Muhammad
2013-02-26Don't end up killing init if process selected to be killed terminates before ↵Hisham Muhammad
the user selects a signal. Closes #3606072.
2012-12-05Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad
UTF-8 display of big numbers.
2012-11-10search and filter for the strace and lsof screens!Hisham Muhammad
2012-10-04Add IO priority support ('i' key)Hisham Muhammad
2012-08-10Add -p flag, contributed by Rob HoelzHisham Muhammad
2012-06-05allow 'k' to kill multiple processes again (when did this break?...)Hisham Muhammad
2012-05-28Continue following when switching to tree view. Patch by Richard Wang.Hisham Muhammad
2012-05-28fix message in help screenHisham Muhammad
2012-03-30Auto-follow process when selecting which signal to use when killing a process.Hisham Muhammad
This avoids killing the wrong process.
2012-03-05Fix crashes when process list is emptyHisham Muhammad
2012-02-02BUGFIX: behavior of 'F' (follow) key was broken, also affecting theHisham Muhammad
persistence of mouse selections. Closes #3165065.
2012-01-29Extra check if Process_getAffinity fails.Hisham Muhammad
I could not reproduce the crash in current SVN (I've been adding checks for problems like this), but the sanity check looks correct. Thanks to Cybjit. Closes #3481053.
2011-12-26Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad
2011-12-26major header cleanupHisham Muhammad
2011-12-25Use strdup explicitlyHisham Muhammad
2011-12-01Keep panel structure up-to-date as process list changes when headers are ↵Hisham Muhammad
updated during the screen manager. Hopefully closes #3444533.
2011-11-21Remove bundled hwloc-1.2.1. Use either native Linux affinity support or an ↵Hisham Muhammad
external libhwloc. (for details see https://sourceforge.net/mailarchive/forum.php?thread_name=CAJpkDYeZpwqcWxZ77wq6bMrnhn-KzkU1xAqb3cU0drfnA3n9FQ%40mail.gmail.com&forum_name=htop-general )
2011-11-18Mega-commit with features and tweaks for 1.0:Hisham Muhammad
* Performance improvements * Support for splitting CPU meters into two or four columns (thanks to Wim Heirman) * Switch from PLPA, which is now deprecated, to HWLOC. * Bring back support for native Linux sched_setaffinity, so we don't have to use HWLOC where we don't need to. * Support for typing in user names and column fields in selection panels.
2011-11-05build fixesHisham Muhammad
2011-11-05Allow typing to select items in various panels (sort, user, signal).Hisham Muhammad
Factored code from the SignalsPanel to apply to all selections from main screen. Closes feature request #3425304.
2011-11-03Support for UTF-8 tree drawingHisham Muhammad
(thanks to Bin Guo)
2011-09-29Use wider PID columns in 64-bit machines with larger pid_max values.Hisham Muhammad
2011-09-24Convert affinity control from the deprecated PLPA to HWLOCHisham Muhammad
2011-09-08Fix --sort-key=helpHisham Muhammad
2011-09-08minor change to improve portabilityHisham Muhammad
2011-09-08Fix off-by-one error in PROCESSOR displayHisham Muhammad
2011-09-08Fix on-screen documentation regarding [ and ]Hisham Muhammad
2011-09-08incremental filteringHisham Muhammad
plus some fixes
2011-08-26Stricter checks for command-line optionsHisham Muhammad
(thanks to Sebastian Pipping)
2011-05-26ncurses does not support the scrollwheel well, but this is a step in that ↵Hisham Muhammad
direction.
2011-03-28handle large values for process timeHisham Muhammad
2011-03-22* Option for counting CPUs from zeroHisham Muhammad
(thanks to Sean Noonan) * Meters update in every screen (no longer halting while on Setup, etc.)
2010-11-24Fix online help!Hisham Muhammad
2010-11-22Remove arbitrary limit from rich stringsHisham Muhammad
Fix subtree hiding Fix reading of CPU values in hidden threads Fix hiding of zombie processes as kernel threads Remove "debug proc" code Code cleanup in processElements
2010-11-20Fix search by process name when processes are filtered by user. Closes #2803481.Hisham Muhammad
2010-08-24add support for steal/guest CPU time measurementHisham Muhammad
simplify processor data accounting (add CPUData structure) remove Process_clone trick
2010-06-17expand/collapse treeHisham Muhammad
2010-02-25getopt-based long options and --no-colorHisham Muhammad
(thanks to Vincent Launchbury)
2010-02-25warning fixesHisham Muhammad
2009-06-23* BUGFIX: Fix crash on F6 keyHisham Muhammad
(thanks to Rainer Suhm)
2009-06-02doc fixHisham Muhammad