summaryrefslogtreecommitdiffstats
path: root/unsupported
Commit message (Collapse)AuthorAgeFilesLines
...
* FreeBSD: implement Platform_getDiskIO()Christian Goettsche2020-10-292-7/+4
|
* Improve handling of no data in Disk and Network IO MetersChristian Göttsche2020-10-262-4/+10
|
* Continue to update generic data in paused modeChristian Göttsche2020-10-192-3/+8
| | | | | | | | | Generic data, as CPU and memory usage, are used by Meters. In paused mode they would stop receiving updates and especially Graph Meters would stop showing continuous data. Improves: #214 Closes: #253
* Add NetworkIOMeterChristian Göttsche2020-10-162-0/+15
|
* Refactor generating starttime string into Process classChristian Göttsche2020-10-161-1/+1
|
* Centralise fault handlingBenny Baumann2020-10-122-35/+0
| | | | This should be done as all platforms essentially did the same anyway and there was nothing platform specific.
* Mark process argument of Process_isThread constChristian Göttsche2020-10-092-2/+2
|
* Some more locations for ARRAYSIZEBenny Baumann2020-10-081-1/+2
|
* Mark Object instances constChristian Göttsche2020-10-072-2/+2
|
* Merge branch 'update-license-and-copyright-info'Nathan Scott2020-10-068-8/+8
|\
| * Update License consistently to GPLv2 as per COPYING fileDaniel Lange2020-10-058-8/+8
| |
* | Add a date and datetime meter (#159)Michael F. Schönitzer2020-10-051-0/+4
|/ | | | | | 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.
* Add DiskIOMeter for IO read/write usageChristian Göttsche2020-10-032-0/+6
|
* CPUMeter: add octuple-column CPU meters.multi2020-09-281-0/+3
| | | | | | | This is a straightforward extension of the existing multi-column CPU meter code, which now allows for up CPU meters to be displayed in up to 16 columns. This also adds the meter declarations to all the platform-specific code.
* Add missing 4-column CPU meters to non-Linux platforms.multi2020-09-281-0/+3
|
* Add -Wmissing-prototypes compiler warningChristian Göttsche2020-09-252-2/+4
|
* Update CPU freq display to use NAN on errorBenny Baumann2020-09-241-1/+3
|
* Update battery API to use NAN on errorBenny Baumann2020-09-241-1/+2
|
* Mark noreturn functionsChristian Göttsche2020-09-182-1/+4
|
* Use strict function prototypesChristian Göttsche2020-09-181-2/+2
| | | | int foo(); declares a function taking any number of arguments.
* Switch variable/field naming from WhiteList to MatchListNathan Scott2020-09-092-3/+3
|
* Further, minor cleanups to headers post-MakeHeadersNathan Scott2020-09-084-6/+0
| | | | | Remove leftover empty ifdef/endif pairs, whitespace. The generated htop.h file was also unused - removed.
* Axe automated header generation.Zev Weiss2020-09-038-25/+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.
* Remove trailing whitespacesChristian Göttsche2020-08-213-3/+0
|
* Merge branch 'hishamhm-pull-932'Nathan Scott2020-08-201-1/+4
|\
| * Show N/A on unsupported platforms instead of 0KHzArnavion2019-08-101-1/+4
| |
* | Merge branch 'hishamhm-pull-960'Nathan Scott2020-08-201-1/+1
|\ \
| * | Clean up existing whitespaceDaniel Flanagan2019-10-311-1/+1
| |/
* / Widen ST_UID (UID) column to 5 chars to allow UIDs > 9999 without breaking ↵Daniel Lange2018-10-071-1/+1
|/ | | | | | alignment Issue Github #841, Debian bug #910492
* Remove unused function from unsupported/Hisham Muhammad2018-02-182-7/+0
|
* Issue #502 fix SID colunm header widthKamyar Rasta2017-02-051-1/+1
|
* Issue #502 update Session ID columnKamyar Rasta2017-02-011-1/+1
|
* Interpret TTY_NR column on Linux,Hisham2016-10-011-1/+1
| | | | | translate dev_t to major:minor on other platforms. Closes #316.
* Mark signal tables 'const'Explorer092016-08-302-4/+4
| | | | | | | | | Specifically, Platform_signals[] and Platform_numberOfSignals. Both are not supposed to be mutable. Marking them 'const' puts them into rodata sections in binary. And for Platform_numberOfSignals, this aids optimization (aids only Link Time Optimization for now). :) Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
* Make unsupported platform build again.Hisham2016-02-142-27/+29
| | | | (Thanks @coypoop at #397 for the heads up!)
* Merge branch 'xalloc'Hisham2016-02-022-2/+2
|\
| * Check for failure in allocations.Hisham2016-02-022-2/+2
| |
* | Update generated headers.Hisham2016-02-021-0/+1
|/
* Merge remote-tracking branch 'upstream/master' into envscreenMichael Klein2016-01-061-1/+1
|\
| * Fix spelling of "maintainer"Michael McConville2016-01-021-1/+1
| |
* | Add Platform_getProcessEnvMichael Klein2015-12-031-0/+3
|/ | | | - currently implemented for darwin and linux
* fix calloc() callsChristian Hesse2015-09-071-1/+1
| | | | | | | * size_t nmemb (number of elements) first, then size_t size * do not assume char is size 1 but use sizeof() * allocate for char, not pointer to char (found by Michael McConville, fixes #261)
* Make column width calculation dynamic.Hisham Muhammad2015-08-202-4/+0
| | | | Closes #228.
* Make unsupported runDavid Hunt2015-08-196-31/+159
|
* Add files to unsupported platform.Hisham Muhammad2015-03-164-0/+78
|
* Merge branch 'wip' of https://github.com/hishamhm/htop into freebsdHisham Muhammad2015-03-152-5/+5
|\ | | | | | | | | | | Conflicts: htop.c unsupported/Platform.h
| * Work on fixing build of "unsupported" platformHisham Muhammad2015-02-232-5/+8
| |
* | Merge branch 'master' into freebsdHisham Muhammad2014-11-271-1/+7
|\|
| * Move platform-dependent parts of Linux battery meter.Hisham Muhammad2014-11-271-1/+7
| |
* | Merge branch 'master' into freebsdHisham Muhammad2014-11-271-0/+4
|\|

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