summaryrefslogtreecommitdiffstats
path: root/dragonflybsd/Platform.c
Commit message (Collapse)AuthorAgeFilesLines
* DragonFlyBSD: support Disk IO meterChristian Göttsche2024-01-201-3/+58
|
* DragonFlyBSD: support Network IO meterChristian Göttsche2024-01-201-3/+26
|
* DragonFlyBSD: build fixesChristian Göttsche2024-01-201-1/+2
|
* Add includes for config.h as per the discussion in PR #1337Daniel Lange2023-12-261-0/+2
| | | | | | Many thanks to @Explorer09 Kang-Che Sung (宋岡哲). Also add a #error stanza to XUtils.h in case somebody forgets the beautiful mess GNU forces on us.
* Move shared memory next to used memoryKevin Bracey2023-10-261-2/+2
| | | | | | | | | Shared memory is less available than buffers, so move it left next to used memory. This is in preparation for including shared memory in the basic "in use" for the bar text. It would not make sense to sum a discontiguous region.
* Correct pid_t type return from Platform_getMaxPid functionNathan Scott2023-09-041-1/+1
| | | | | | | Coverity scanning shows we end up passing an integer into the Row_setPidColumnWidth routine which requires a pid_t - update each platform to return the correct type (and never return -1 as a failure code, this was being ignored).
* Rename ProcessList to ProcessTable throughoutNathan Scott2023-08-311-2/+2
| | | | | | | | | | | | Following up with some discusson from a few months back, where it was proposed that ProcessTable is a better name. This data structure is definitely not a list ... if it was one-dimensional it'd be a set, but in practice it has much more in common with a two-dimensional table. The Process table is a familiar operating system concept for many people too so it resonates a little in that way as well.
* Replace isnan() with better comparisons (isgreater(), etc.)Explorer092023-08-181-3/+4
| | | | | | | | | | | | | | | | | | The standard isnan() function is defined to never throw FP exceptions even when the argument is a "signaling" NaN. This makes isnan() more expensive than (x != x) expression unless the compiler flag '-fno-signaling-nans' is given. Introduce functions isNaN(), isNonnegative(), isPositive(), sumPositiveValues() and compareRealNumbers(), and replace isnan() in htop's codebase with the new functions. These functions utilize isgreater() and isgreaterequal() comparisons, which do not throw FP exceptions on "quiet" NaNs, which htop uses extensively. With isnan() removed, there is no need to suppress the warning '-Wno-c11-extensions' in FreeBSD. Remove the code from 'configure.ac'. Signed-off-by: Kang-Che Sung <explorer09@gmail.com>
* Adapt platform code for the new Machine base classNathan Scott2023-05-081-14/+13
| | | | | Move host-centric data to new derived <Platform>Machine classes, separate from process-list-centric data.
* Introduce Machine class for host-specific info (split from ProcessList)Nathan Scott2023-05-081-5/+6
| | | | | | | | | | | First stage in sanitizing the process list structure so that htop can support other types of lists too (cgroups, filesystems, ...), in the not-too-distant future. This introduces struct Machine for system-wide information while keeping process-list information in ProcessList (now much less). Next step is to propogate this separation into each platform, to match these core changes.
* {Memory,Swap}Meter: add "compressed memory" metricsIvan Shapovalov2023-04-231-1/+3
| | | | | | | | For now, the semantics are mostly fit for Linux zswap subsystem. For instance, we add the third swap usage metric that indicates the amount of memory that is accounted to swap but in fact stored elsewhere. This exactly matches the definition of frontswap/zswap, and is probably of little use to all other platforms.
* Improve code readability by using enum values instead of raw numbersGuillaume Gomez2023-03-041-3/+3
|
* Implement File Descriptor Meter support for DragonflyBSD/FreeBSD/NetBSDBenny Baumann2023-02-191-0/+8
|
* Use strict function prototypes also for defintionsChristian Göttsche2023-02-041-2/+2
| | | | | | | freebsd/Platform.c:151:23: error: a function declaration without a prototype is deprecated in all versions of C [-Werror,-Wstrict-prototypes] int Platform_getUptime() { ^ void
* Improve code readability by creating constants for SWAP memory valuesGuillaume Gomez2023-01-081-2/+2
|
* Clean out Platform_getInodeFilenameнаб2023-01-081-6/+0
| | | | | | It's an artefact of the previous implementation of Platform_getProcessLocks for Linux, and is never used; there's no reason for it to have ever been exported
* Improve code readability by creating constants for memory valuesGuillaume Gomez2023-01-071-5/+5
|
* Use correct command field as default fieldChristian Göttsche2021-12-171-1/+1
| | | | | The default htop command process field has the enum identifier `COMM` but the name `Command` (`COMM` is the field name for /proc/<PID>/comm).
* Mark ScreenDefaults constChristian Göttsche2021-12-171-1/+1
|
* Introduce screen tabsHisham Muhammad2021-12-071-1/+8
| | | | This is a forward port (by nathans) of Hisham's original code.
* Early program termination only from main()Volodymyr Vasiutyk2021-10-311-1/+2
|
* Update license headers to explicitly say GPLv2+Daniel Lange2021-09-221-1/+1
|
* Add combined memory and swap meterChristian Göttsche2021-08-171-0/+2
| | | | Closes: #699
* Rework CPU countingChristian Göttsche2021-07-181-1/+1
| | | | | | | | | | | Currently htop does not support offline CPUs and hot-swapping, e.g. via echo 0 > /sys/devices/system/cpu/cpu2/online Split the current single cpuCount variable into activeCPUs and existingCPUs. Supersedes: #650 Related: #580
* Code indentationBenny Baumann2021-07-151-5/+5
|
* DragonFlyBSD: Fix included headersBenny Baumann2021-05-221-2/+1
|
* platform-dependent files included relative to main source directorymayurdahibhate2021-05-101-19/+20
|
* Use unsigned types for CPU counts and associated variablesChristian Göttsche2021-03-191-2/+2
|
* MemoryMeter: show shared memory before cachedChristian Göttsche2021-03-171-1/+3
| | | | | | Shared memory is less free-able than cached memory. Show it beforehand.
* Fix integer sizing issues in the NetworkIO MeterNathan Scott2021-03-011-8/+2
| | | | | | | | | On Linux kernels the size of the values exported for network device bytes and packets has used a 64 bit integer for quite some time (2.6+ IIRC). Make the procfs value extraction use correct types and change internal types used to rate convert these counters (within the NetworkIO Meter) 64 bit integers, where appropriate.
* [#480] SysArchMeter to view kernel/arch infoahgamut2021-01-311-0/+2
| | | | | | | At start, SysArchMeter calls the uname function to obtain the kernel version and architecture. If available, the distro version is obtained by calling lsb_release. The obtained values are stored in static variables and used when updating the meter.
* Linux: Add SwapCached to the swap meterDavid Zarzycki2021-01-111-0/+1
| | | | | | | According to the Linux kernel documentation, "SwapCached" tracks "memory that once was swapped out, is swapped back in but still also is in the swapfile (if memory is needed it doesn't need to be swapped out AGAIN because it is already in the swapfile. This saves I/O)."
* Mark Platform_defaultFields constChristian Göttsche2020-12-191-1/+1
|
* Rework enum ProcessFieldChristian Göttsche2020-12-191-2/+0
| | | | | | Use only one enum instead of a global and a platform specific one. Drop Platform_numberOfFields global variable. Set known size of Process_fields array
* Unify naming of first argument of Platform_getBatteryChristian Göttsche2020-11-251-3/+3
| | | | Use percent throughout
* Merge branch 'cleanup-init-done' into masterNathan Scott2020-11-231-4/+13
|\
| * Minor cleanups to platform-specific init and doneNathan Scott2020-11-191-4/+13
| | | | | | | | | | | | | | Move platform-specific code out of the htop.c main function and into the platform sub-directories - primarily this is the Linux procfs path check and sensors setup/teardown; not needed on any other platforms. No functional changes here.
* | Rename virtual memory column from M_SIZE to M_VIRTChristian Göttsche2020-11-211-1/+1
|/ | | | Closes: #325
* Merge individual Battery.[ch] files into Platform.[ch]Nathan Scott2020-11-181-0/+16
| | | | | Consistent with everything else involving platform-specific calls from core htop code.
* Show CPU temperature in CPU meterChristian Göttsche2020-11-161-0/+1
| | | | | Show the CPU temperature in the CPU meter, like CPU frequency, instead of using an extra Meter.
* Resolve merge conflicts, merge #298 "Macro cleanup" from @BenBEDaniel Lange2020-11-151-11/+10
|\
| * Integrate NAN check into assignmentBenny Baumann2020-11-021-4/+1
| | | | | | | | The check for NAN is kept to avoid relying on implementation details of the CLAMP macro/function
| * Embracing branchesBenny Baumann2020-11-021-1/+3
| |
| * Spacing around operatorsBenny Baumann2020-11-021-6/+6
| |
| * Whitespace and indentation issuesBenny Baumann2020-11-021-3/+3
| |
* | Split platform dependent parts for file locks screenBenny Baumann2020-11-141-0/+11
|/
* FreeBSD: implement Platform_getDiskIO()Christian Goettsche2020-10-291-4/+2
|
* Hold only a const version of the ProcessList in MetersChristian Göttsche2020-10-261-4/+4
|
* Improve handling of no data in Disk and Network IO MetersChristian Göttsche2020-10-261-2/+6
|
* Drop unused Platform functions Platform_setTasksValuesChristian Göttsche2020-10-221-5/+0
|

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