summaryrefslogtreecommitdiffstats
path: root/CRT.c
Commit message (Collapse)AuthorAgeFilesLines
* IWYU updateChristian Göttsche2020-12-061-1/+0
|
* Hide degree character without wide ncurses supportChristian Göttsche2020-12-051-1/+1
|
* Resolve conversion from int to shortChristian Göttsche2020-12-051-7/+5
|
* Set locale only once and do not override it laterChristian Göttsche2020-12-021-3/+0
|
* Compare indices not index with pairChristian Göttsche2020-12-021-1/+1
| | | | | | Fixes always true condition. Found by LGTM.com
* Use enum element name instead of magic numberChristian Göttsche2020-12-021-1/+2
|
* Add support to change numeric options in settings screenChristian Göttsche2020-11-251-6/+6
| | | | Like delay or highlightDelaySecs
* Improving Command display/sortNarendran Gopalakrishnan2020-11-241-0/+18
|
* Show CPU temperature in CPU meterChristian Göttsche2020-11-161-0/+19
| | | | | Show the CPU temperature in the CPU meter, like CPU frequency, instead of using an extra Meter.
* Fix whitespace before comma in the new color definitionsDaniel Lange2020-11-161-10/+10
|
* Merge branch 'hili-new-old' of adsr/htop into highlight-new-old-processesDaniel Lange2020-11-161-0/+12
|\
| * Highlight new and old processes (#74)Adam Saponara2020-10-301-0/+12
| |
* | Fixup of SystemdMeter mergeChristian Göttsche2020-11-151-5/+10
| |
* | Resolve merge conflicts, merge #229 "Add SystemdMeter" from @cgzonesDaniel Lange2020-11-151-1/+2
|\ \
| * | Add SystemdMeterChristian Göttsche2020-10-311-6/+12
| | |
* | | Embracing branchesBenny Baumann2020-11-021-5/+11
| | |
* | | Spacing around operatorsBenny Baumann2020-11-021-369/+369
| | |
* | | Spacing after keywords (if)Benny Baumann2020-11-021-2/+2
|/ /
* / Zram Meter featureMurloc Knight2020-10-311-0/+6
|/
* Improve handling of no data in Disk and Network IO MetersChristian Göttsche2020-10-261-0/+6
|
* Merge branch 'Xalloc_Cleanup' of cgzones/htopDaniel Lange2020-10-201-1/+1
|\
| * XUtils string related updatesChristian Göttsche2020-10-191-1/+1
| | | | | | | | | | | | | | | | | | | | - allow count out-parameter of String_split() to be NULL - introduce xStrndup() - do not allow NULL pointers passed to String_eq() it is not used in any code - implement String_startsWith(), String_contains_i() and String_eq() as inline header functions - adjust several conversion issues
* | Cache PAGE_SIZEChristian Göttsche2020-10-191-0/+7
|/ | | | | | man:sysconf(3) states: The values obtained from these functions are system configuration constants. They do not change during the lifetime of a process.
* Make all required includes explicitBenny Baumann2020-10-181-10/+8
| | | | Information as seen by IWYU 0.12 + clang 9 on Linux
* Rename StringUtils.[ch] to XUtils.[ch]Benny Baumann2020-10-161-1/+1
|
* Generalize Meter value colors for IOChristian Göttsche2020-10-161-18/+18
|
* Misc CRT cleanupChristian Göttsche2020-10-141-36/+19
|
* Centralise fault handlingBenny Baumann2020-10-121-7/+105
| | | | This should be done as all platforms essentially did the same anyway and there was nothing platform specific.
* Add key to pause process list updatesChristian Göttsche2020-10-121-1/+7
|
* Merge branch 'update-license-and-copyright-info'Nathan Scott2020-10-061-1/+1
|\
| * Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-051-1/+1
| |
* | Add a date and datetime meter (#159)Michael F. Schönitzer2020-10-051-0/+10
|/ | | | | | Add a date meter and sort header and source files in Makefile Change the lists of header and source files sorted alphabetical and one file per line. This way diffs become better readable and merges easier.
* Resolve DEBUG compilation issuesChristian Göttsche2020-10-031-2/+2
| | | | | | | Use NDEBUG conditional instead of DEBUG. Do not call static functions in extern inline ones. Vector.c:67:11: error: static function 'Vector_isConsistent' is used in an inline function with external linkage [-Werror,-Wstatic-in-inline]
* Add DiskIOMeter for IO read/write usageChristian Göttsche2020-10-031-0/+18
|
* Adjust colorsChristian Göttsche2020-10-021-27/+27
| | | | | | | | - do not reverse CPU steal and guest in monochrome - black on black in Light Terminal is not visible, use blue on black - white on blue in Light Terminal is display as blue on black, use yellow on black - re-draw FunctionBar after color change
* Mark noreturn functionsChristian Göttsche2020-09-181-0/+1
|
* Avoid checking of undefined macrosChristian Göttsche2020-09-181-4/+4
| | | | | These feature macros are either define or not defined at all at the configure step.
* Enhance highlighting of semi-large and large numbersBenny Baumann2020-09-171-0/+6
|
* Allow third party sigsegv handlerChristian Göttsche2020-09-171-1/+7
| | | | For example from sanitizers.
* Clean up some code duplication in the header filesHugo Musso Gualandi2020-09-121-10/+1
| | | | | | | | | | | | | PR htop-dev/htop#70 got rid of the infrastructure for generating header files, but it left behind some code duplication. Some of cases are things that belong in the header file and don't need to be repeated in the C file. Other cases are things that belong in the C file and don't need to be in the header file. In this commit I tried to fix all of these that I could find. When given a choice I preferred keeping things out of the header file, unless they were being used by someone else.
* Further, minor cleanups to headers post-MakeHeadersNathan Scott2020-09-081-2/+0
| | | | | Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
* Axe automated header generation.Zev Weiss2020-09-031-104/+0
| | | | | | | | | | | | | | Reasoning: - implementation was unsound -- broke down when I added a fairly basic macro definition expanding to a struct initializer in a *.c file. - made it way too easy (e.g. via otherwise totally innocuous git commands) to end up with timestamps such that it always ran MakeHeader.py but never used its output, leading to overbuild noise when running what should be a null 'make'. - but mostly: it's just an awkward way of dealing with C code.
* add option (-U, --no-unicode) to disable unicode at runtimeChristian Hesse2020-09-011-2/+4
|
* CRT: note about possible use of replacement for `+` glyph in treeBert Wesarg2020-08-311-1/+3
|
* Revert "Use UTF-8 for check buttons and tree open/closed"Bert Wesarg2020-08-311-48/+20
| | | | This reverts commit 5d5913d355b3a9f03da589b3542b8f55467b4ed6.
* 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
|\ \

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