summaryrefslogtreecommitdiffstats
path: root/htop.c
AgeCommit message (Collapse)Author
2018-04-05Add -t command-line flag for tree viewDaniel Flanagan
2016-02-19Remove old commented code.Hisham
2016-02-19Fix error test — looks like nobody bumped into this one!Hisham
2016-02-02Check for failure in allocations.Hisham
2016-01-04align help outputChristian Hesse
2015-10-05gcc warning cleanups.Hisham Muhammad
2015-09-19Replace some remaining tabsMichael McConville
2015-09-19Change more fprintf(stderr, ...); exit(...); to err[x](...). Tweak a few ↵Michael McConville
existing ones and fix some style.
2015-09-18(Very) initial working OpenBSD portMichael McConville
2015-07-16remove duplicate codeChristian Hesse
2015-03-23Do not trust isalpha(c) for values > 255.Hisham Muhammad
Fixes #174. Conflicts: Panel.c
2015-03-23Move FunctionBar inside PanelHisham Muhammad
2015-03-22Working on integration of IncSet in new branch.Hisham Muhammad
2015-03-15Merge branch 'wip' of https://github.com/hishamhm/htop into freebsdHisham Muhammad
2015-03-15Merge branch 'wip' of https://github.com/hishamhm/htop into freebsdHisham Muhammad
Conflicts: htop.c unsupported/Platform.h
2015-03-15Move more Linux-specific code into Linux subdir.Hisham Muhammad
2015-01-23Another mega-patch for the refactoring process.Hisham Muhammad
Kinda runs, but functionality from the original main loop is still missing. Patience.
2015-01-21Sorry about the mega-patch.Hisham Muhammad
This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
2014-11-27Merge branch 'master' of https://github.com/hishamhm/htopHisham Muhammad
2014-11-27Move "get max pid" code into platform specific area.Hisham Muhammad
2014-11-27check /proc only if using /procHisham Muhammad
2014-11-24Builds on Linux again!Hisham Muhammad
2014-11-24Changes for supporting separate platform subdirectories.Hisham Muhammad
2014-11-19Refactored key handlers.Hisham Muhammad
Made the logic more modular, hopefully easier to follow, and removed repeated code. Plus, some optimization in RichString code.
2014-06-04Get two data points for meters.Hisham Muhammad
Ensure one mini-reading-cycle runs before getting the UI active so we have two data points to get better meter measurements from the get-go.
2014-05-05Don't stop refreshing if clock was adjusted.Hisham Muhammad
2014-05-03Avoid weird behavior when exiting help pressing keys such as F2.Hisham Muhammad
2014-04-25Now, when you disable a filter (F4 → Esc), it will go back to unfiltered modeHisham Muhammad
but the current process will remain selected (so you can filter, choose and then go back to unfiltered mode to see the children of that process). Inspired by feedback at http://www.reddit.com/r/linux/comments/23wpc7/announcing_htop_103_with_new_features_bugfixes/ch1paos
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