summaryrefslogtreecommitdiffstats
path: root/htop.c
AgeCommit message (Collapse)Author
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
2009-06-02changes for htop 0.8.2Hisham Muhammad
2009-04-22clean inc search buffer codeHisham Muhammad
2009-03-11BSD related fixes:Hisham Muhammad
* BUGFIX: Correct page size calculation for FreeBSD systems (thanks to Andrew Paulsen) * Allow compilation without PLPA on systems that don't support it (thanks to Timothy Redaelli)
2009-02-18improve help on monochrome, fix bug #2430855Hisham Muhammad
2009-02-17fix bug #2171752Hisham Muhammad
2008-05-07Fix mouseclick handling in top barHisham Muhammad
2008-04-23Make setup screen fully mouse-driveableHisham Muhammad
2008-03-14Ability to change sort column with the mouse byHisham Muhammad
clicking column titles (click again to invert order). Also, add a consolidated IO kbyte/s column.
2008-03-09Clean up headers by using 'static' whenever possible.Hisham Muhammad
Reduces resulting code size.
2008-03-09Add Unicode support, enabled with the --enable-unicodeHisham Muhammad
flag, which requires libncursesw. Thanks to Sergej Pupykin!