summaryrefslogtreecommitdiffstats
path: root/htop.c
Commit message (Collapse)AuthorAgeFilesLines
* Make blue text more readable. Closes #55.Hisham Muhammad2014-04-241-3/+3
|
* Fix compiler complaints.Hisham Muhammad2014-04-221-1/+2
|
* Remove use of usleep, which is sadly obsolete.Hisham Muhammad2014-04-211-1/+11
|
* avoid strtok and reduce scope of variables.Hisham Muhammad2014-04-211-8/+8
|
* Improve discoverability of the expand/collapse feature.Hisham Muhammad2014-04-091-39/+94
| | | | | | | | | | | 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).
* Add missing check for return value and be more conservative in constructs to ↵Hisham Muhammad2014-04-091-6/+17
| | | | avoid future slips of this kind.
* Refactor the drawing of the help screenHisham Muhammad2014-01-141-37/+41
|
* First new feature of the git era! "c" key tags all children of a process.Hisham Muhammad2014-01-141-0/+18
|
* Make CPU meter optionally account guest time in its percentagesHisham Muhammad2013-12-181-2/+2
|
* Don't end up killing init if process selected to be killed terminates before ↵Hisham Muhammad2013-02-261-3/+8
| | | | the user selects a signal. Closes #3606072.
* Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad2012-12-051-48/+33
| | | | UTF-8 display of big numbers.
* search and filter for the strace and lsof screens!Hisham Muhammad2012-11-101-125/+36
|
* Add IO priority support ('i' key)Hisham Muhammad2012-10-041-59/+53
|
* Add -p flag, contributed by Rob HoelzHisham Muhammad2012-08-101-7/+31
|
* allow 'k' to kill multiple processes again (when did this break?...)Hisham Muhammad2012-06-051-2/+1
|
* Continue following when switching to tree view. Patch by Richard Wang.Hisham Muhammad2012-05-281-0/+1
|
* fix message in help screenHisham Muhammad2012-05-281-1/+1
|
* Auto-follow process when selecting which signal to use when killing a process.Hisham Muhammad2012-03-301-0/+9
| | | | | This avoids killing the wrong process.
* Fix crashes when process list is emptyHisham Muhammad2012-03-051-9/+21
|
* BUGFIX: behavior of 'F' (follow) key was broken, also affecting theHisham Muhammad2012-02-021-1/+2
| | | | | persistence of mouse selections. Closes #3165065.
* Extra check if Process_getAffinity fails.Hisham Muhammad2012-01-291-0/+1
| | | | | | | | 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.
* Remove old memory debugging routines. We have Valgrind nowadays.Hisham Muhammad2011-12-261-2/+0
|
* major header cleanupHisham Muhammad2011-12-261-11/+15
|
* Use strdup explicitlyHisham Muhammad2011-12-251-2/+2
|
* Keep panel structure up-to-date as process list changes when headers are ↵Hisham Muhammad2011-12-011-39/+28
| | | | updated during the screen manager. Hopefully closes #3444533.
* Remove bundled hwloc-1.2.1. Use either native Linux affinity support or an ↵Hisham Muhammad2011-11-211-3/+3
| | | | | | | external libhwloc. (for details see https://sourceforge.net/mailarchive/forum.php?thread_name=CAJpkDYeZpwqcWxZ77wq6bMrnhn-KzkU1xAqb3cU0drfnA3n9FQ%40mail.gmail.com&forum_name=htop-general )
* Mega-commit with features and tweaks for 1.0:Hisham Muhammad2011-11-181-39/+4
| | | | | | | | | | | * 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.
* build fixesHisham Muhammad2011-11-051-5/+4
|
* Allow typing to select items in various panels (sort, user, signal).Hisham Muhammad2011-11-051-5/+33
| | | | | | Factored code from the SignalsPanel to apply to all selections from main screen. Closes feature request #3425304.
* Support for UTF-8 tree drawingHisham Muhammad2011-11-031-1/+32
| | | | | (thanks to Bin Guo)
* Use wider PID columns in 64-bit machines with larger pid_max values.Hisham Muhammad2011-09-291-0/+1
|
* Convert affinity control from the deprecated PLPA to HWLOCHisham Muhammad2011-09-241-13/+12
|
* Fix --sort-key=helpHisham Muhammad2011-09-081-1/+1
|
* minor change to improve portabilityHisham Muhammad2011-09-081-1/+1
|
* Fix off-by-one error in PROCESSOR displayHisham Muhammad2011-09-081-1/+1
|
* Fix on-screen documentation regarding [ and ]Hisham Muhammad2011-09-081-2/+2
|
* incremental filteringHisham Muhammad2011-09-081-40/+91
| | | | | plus some fixes
* Stricter checks for command-line optionsHisham Muhammad2011-08-261-5/+16
| | | | | (thanks to Sebastian Pipping)
* ncurses does not support the scrollwheel well, but this is a step in that ↵Hisham Muhammad2011-05-261-24/+31
| | | | direction.
* handle large values for process timeHisham Muhammad2011-03-281-1/+2
|
* * Option for counting CPUs from zeroHisham Muhammad2011-03-221-11/+11
| | | | | | (thanks to Sean Noonan) * Meters update in every screen (no longer halting while on Setup, etc.)
* Fix online help!Hisham Muhammad2010-11-241-3/+3
|
* Remove arbitrary limit from rich stringsHisham Muhammad2010-11-221-8/+11
| | | | | | | | | 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
* Fix search by process name when processes are filtered by user. Closes #2803481.Hisham Muhammad2010-11-201-5/+4
|
* add support for steal/guest CPU time measurementHisham Muhammad2010-08-241-9/+13
| | | | | | simplify processor data accounting (add CPUData structure) remove Process_clone trick
* expand/collapse treeHisham Muhammad2010-06-171-6/+13
|
* getopt-based long options and --no-colorHisham Muhammad2010-02-251-49/+75
| | | | | (thanks to Vincent Launchbury)
* warning fixesHisham Muhammad2010-02-251-24/+24
|
* * BUGFIX: Fix crash on F6 keyHisham Muhammad2009-06-231-5/+5
| | | | | (thanks to Rainer Suhm)
* doc fixHisham Muhammad2009-06-021-1/+1
|

© 2014-2024 Faster IT GmbH | imprint | privacy policy