summaryrefslogtreecommitdiffstats
path: root/CRT.c
AgeCommit message (Collapse)Author
2020-08-26Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott
bertwesarg-ci-hwloc-job
2020-08-20Merge branch 'hishamhm-pull-920'3.0.0rc1Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-996'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-960'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-914'Nathan Scott
2020-08-20Merge branch 'hishamhm-pull-890'Nathan Scott
2020-07-10Resolve complation issues with -fno-common (default from gcc-10)Nathan Scott
Extends the MakeHeader script to auto-generate correct "extern" function declarations in some cases that it currently does not. Related to https://github.com/hishamhm/htop/pull/981
2020-04-27format colorfo40225
2020-04-27fix "Broken Gray" didn't change the color of cpu-iowaitfo40225
2019-10-31Clean up existing whitespaceDaniel Flanagan
2019-09-03Support for ZFS Compressed ARC statisticsRoss Williams
2019-07-07Support ZFS ARC stats on FreeBSDRoss Williams
New meter displays same ARC stats as FreeBSD top(1). Can be extended to other platforms that support ZFS. Pulling kstat.zfs.misc.arcstats.c_max as the meter total, so the meter has a meaningful value to work up to. The Text meter displays, first, the maximum ARC size (Meter.total), then second, the total ARC used, using the difference between Meter.maxItems and Meter.curItems to "hide" the used value from the Bar and Graph drawing functions by using an index in Meter.values[] that is beyond curItems - 1, but less than maxItems - 1.
2019-05-26CPU_KERNEL redefinedsenjan
2018-02-05Fix color behavior on some terminals.Hisham Muhammad
Fixes #635.
2017-07-26Security review: make privilege dropping-restoring optional.Hisham Muhammad
This is/was necessary only on macOS, because you needed root in order to read the process list. This was never necessary on Linux, and it also raises security concerns, so now it needs to be enabled explicitly at build time.
2017-06-06Merge branch 'master' into fixedgrayHisham
2017-06-01make special keys also work with TERM=xterm-256colorMichael Klein
2017-05-23Work around the strange behavior of gray.Hisham
2016-05-30Handle SIGQUIT. Closes #503.Hisham
2016-03-09Avoid overlapping key values defined by curses (Real fix).Explorer09
Real fix for issue #438.
2016-03-08Avoid overlapping key values defined by curses.Hisham
Closes #438.
2016-02-19Fix behavior of ESC key, getting rid of the annoying delay.Hisham
Thank you @Explorer09 for the push! Closes #417.
2015-10-05gcc warning cleanups.Hisham Muhammad
2015-09-19Replace some remaining tabsMichael McConville
2015-08-20Merge pull request #221 from eworm-de/define-array-sizeHisham Muhammad
use a define for graphical meter array size
2015-08-19Add expand/collapse on additional clicks!Hisham Muhammad
2015-08-19Support for NCurses 6.0 and mouse wheelHisham Muhammad
2015-08-19remove UTF-8 code when compiling with --disable-unicodeChristian Hesse
2015-08-19Rename String to StringUtils.David Hunt
Fixes building on case-insensitive filesystems where String.h gets confused with <string.h>. From d734dacea0a10d0465dad4e95b3421511e7da112 Mon Sep 17 00:00:00 2001 From: David Hunt <dhunt@iolanthe.attlocal.net> Date: Sat, 11 Jul 2015 20:56:31 -0500 Subject: [PATCH 1/8] Rename String to StringUtils
2015-07-29initialize locale for LC_CTYPE onlyChristian Hesse
htop uses scanf functions to parse values from proc filesystem. This breaks when initializing locale for LC_NUMERIC because of unexpected commas. So initialize locale for LC_CTYPE only.
2015-07-16simplify UTF-8 detectionChristian Hesse
2015-07-16initialize localeChristian Hesse
This has two effects: * The locale may have impact on string formatting. So depending on the locale we may end up with different decimal point. * We can use nl_langinfo() for UTF-8 detection.
2015-07-14paint PROCESS_LOW_PRIORITY in greenChristian Hesse
... and thus make it use a different color than PROCESS_HIGH_PRIORITY.
2015-04-09Visual tweaks: change color when following, add Broken Gray theme.Hisham Muhammad
2015-02-04Let's see if responsiveness is still good using the full CRT_delayHisham Muhammad
in ncurses. CPU usage goes down noticeably. (Also, add missing comma, sorry.)
2015-02-03Make the implementation of color schemes declarative.Hisham Muhammad
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-24Changes for supporting separate platform subdirectories.Hisham Muhammad
2014-10-14Added new color for 'D' state.Valmiky Arquissandas
2014-04-28Fix behavior of `htop -d 1`. Closes #72.Hisham Muhammad
2014-04-24Make blue text more readable. Closes #55.Hisham Muhammad
2014-04-24Report this as an exit function.Hisham Muhammad
2014-04-09Better support for Home and End keysHisham Muhammad
2014-02-27alignment improvementsHisham Muhammad
2014-01-14New home, new life!Hisham Muhammad
2013-02-26Remove explicit calls to curses.h in other filesHisham Muhammad
2012-12-05Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad
UTF-8 display of big numbers.
2012-10-19Fail gracefully when /proc is not mountedHisham Muhammad
(thanks to Philipp Hagemeister)
2012-10-04Add IO priority support ('i' key)Hisham Muhammad
2012-07-12improve crash message Hisham Muhammad