summaryrefslogtreecommitdiffstats
path: root/CRT.c
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'ci-hwloc-job' of https://github.com/bertwesarg/htop into ↵Nathan Scott2020-08-261-20/+48
| | | | bertwesarg-ci-hwloc-job
* Merge branch 'hishamhm-pull-920'3.0.0rc1Nathan Scott2020-08-201-0/+49
|\
| * Support for ZFS Compressed ARC statisticsRoss Williams2019-09-031-0/+14
| |
| * Support ZFS ARC stats on FreeBSDRoss Williams2019-07-071-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Merge branch 'hishamhm-pull-996'Nathan Scott2020-08-201-3/+3
|\ \
| * | format colorfo402252020-04-271-2/+2
| | |
| * | fix "Broken Gray" didn't change the color of cpu-iowaitfo402252020-04-271-1/+1
| |/
* | Merge branch 'hishamhm-pull-960'Nathan Scott2020-08-201-2/+2
|\ \
| * | Clean up existing whitespaceDaniel Flanagan2019-10-311-2/+2
| |/
* | Merge branch 'hishamhm-pull-914'Nathan Scott2020-08-201-7/+7
|\ \
| * | CPU_KERNEL redefinedsenjan2019-05-261-7/+7
| |/
* | Merge branch 'hishamhm-pull-890'Nathan Scott2020-08-201-0/+21
| |
* | Resolve complation issues with -fno-common (default from gcc-10)Nathan Scott2020-07-101-2/+2
|/ | | | | | | 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
* Fix color behavior on some terminals.Hisham Muhammad2018-02-051-15/+17
| | | | Fixes #635.
* Security review: make privilege dropping-restoring optional.Hisham Muhammad2017-07-261-0/+47
| | | | | | | 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.
* Merge branch 'master' into fixedgrayHisham2017-06-061-1/+1
|\
| * make special keys also work with TERM=xterm-256colorMichael Klein2017-06-011-1/+1
| |
* | Work around the strange behavior of gray.Hisham2017-05-231-11/+23
|/
* Handle SIGQUIT. Closes #503.Hisham2016-05-301-0/+1
|
* Avoid overlapping key values defined by curses (Real fix).Explorer092016-03-091-1/+1
| | | | Real fix for issue #438.
* Avoid overlapping key values defined by curses.Hisham2016-03-081-1/+1
| | | | Closes #438.
* Fix behavior of ESC key, getting rid of the annoying delay.Hisham2016-02-191-0/+8
| | | | | Thank you @Explorer09 for the push! Closes #417.
* gcc warning cleanups.Hisham Muhammad2015-10-051-1/+1
|
* Replace some remaining tabsMichael McConville2015-09-191-2/+2
|
* Merge pull request #221 from eworm-de/define-array-sizeHisham Muhammad2015-08-201-3/+11
|\ | | | | use a define for graphical meter array size
| * remove UTF-8 code when compiling with --disable-unicodeChristian Hesse2015-08-191-3/+11
| |
* | Add expand/collapse on additional clicks!Hisham Muhammad2015-08-191-0/+1
| |
* | Support for NCurses 6.0 and mouse wheelHisham Muhammad2015-08-191-1/+11
|/
* Rename String to StringUtils.David Hunt2015-08-191-1/+1
| | | | | | | | | 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
* initialize locale for LC_CTYPE onlyChristian Hesse2015-07-291-1/+1
| | | | | | 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.
* simplify UTF-8 detectionChristian Hesse2015-07-161-8/+2
|
* initialize localeChristian Hesse2015-07-161-0/+3
| | | | | | | | 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.
* paint PROCESS_LOW_PRIORITY in greenChristian Hesse2015-07-141-5/+5
| | | | ... and thus make it use a different color than PROCESS_HIGH_PRIORITY.
* Visual tweaks: change color when following, add Broken Gray theme.Hisham Muhammad2015-04-091-16/+31
|
* Let's see if responsiveness is still good using the full CRT_delayHisham Muhammad2015-02-041-6/+6
| | | | | in ncurses. CPU usage goes down noticeably. (Also, add missing comma, sorry.)
* Make the implementation of color schemes declarative.Hisham Muhammad2015-02-031-353/+364
|
* Sorry about the mega-patch.Hisham Muhammad2015-01-211-66/+67
| | | | | This is a work-in-progress, code is currently broken. (Some actions, and notably, the header, are missing.)
* Changes for supporting separate platform subdirectories.Hisham Muhammad2014-11-241-25/+2
|
* Added new color for 'D' state.Valmiky Arquissandas2014-10-141-0/+7
|
* Fix behavior of `htop -d 1`. Closes #72.Hisham Muhammad2014-04-281-4/+7
|
* Make blue text more readable. Closes #55.Hisham Muhammad2014-04-241-0/+14
|
* Report this as an exit function.Hisham Muhammad2014-04-241-0/+2
|
* Better support for Home and End keysHisham Muhammad2014-04-091-0/+2
|
* alignment improvementsHisham Muhammad2014-02-271-0/+6
|
* New home, new life!Hisham Muhammad2014-01-141-1/+1
|
* Remove explicit calls to curses.h in other filesHisham Muhammad2013-02-261-1/+2
|
* Changes in object model: separate class objects to store vtable. Also, nicer ↵Hisham Muhammad2012-12-051-4/+6
| | | | UTF-8 display of big numbers.
* Fail gracefully when /proc is not mountedHisham Muhammad2012-10-191-0/+9
| | | | | (thanks to Philipp Hagemeister)
* Add IO priority support ('i' key)Hisham Muhammad2012-10-041-1/+1
|
* improve crash message Hisham Muhammad2012-07-121-0/+5
|

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