summaryrefslogtreecommitdiffstats
path: root/solaris/Platform.c
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Solaris: support offline CPUs and hot-swappingChristian Göttsche2021-07-181-1/+6
| | | | | Example hot-swapping: psradm -F -f 2
* 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
|
* Solaris: correct process env memory handlingChristian Göttsche2021-05-201-2/+2
| | | | | Allow strncpy to NUL-terminate the buffer and do not return a non free- able string literal.
* Solaris: reduce variable scopeChristian Göttsche2021-05-201-3/+7
| | | | Also check for getloadavg(3c) failure
* Solaris: add kstat lookup wrappersChristian Göttsche2021-05-201-1/+1
| | | | | | | The system interfaces kstat_lookup() and kstat_data_lookup() take a non-constant string parameter, but passing string literals is valid. Add wrapper functions to ignore all the const-discard warnings.
* Include signal.h, reorder headersBenny Baumann2021-04-031-12/+13
|
* 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.
* Use String_eq wrapper instead of raw strcmpChristian Göttsche2021-01-301-1/+1
|
* 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)."
* add support to display CPU frequencies on Solarish platformsDominik Hassler2020-12-251-1/+1
|
* Mark Platform_defaultFields constChristian Göttsche2020-12-191-1/+1
|
* Rework enum ProcessFieldChristian Göttsche2020-12-191-4/+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-2/+2
| | | | 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.
* | Fix NULL pointer dereference on kstat_lookup failureBenny Baumann2020-11-221-14/+12
| |
* | 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/+5
| | | | | 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-26/+34
|\
| * 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-7/+18
| |
| * Spacing around operatorsBenny Baumann2020-11-021-16/+16
| |
| * 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-6/+6
|
* Improve handling of no data in Disk and Network IO MetersChristian Göttsche2020-10-261-2/+6
|
* Add NetworkIOMeterChristian Göttsche2020-10-161-0/+11
|
* Some more locations for ARRAYSIZEBenny Baumann2020-10-081-1/+2
|
* Mark Object instances constChristian Göttsche2020-10-071-1/+1
|
* Mark Object classes and Object class fields constChristian Göttsche2020-10-071-2/+2
|
* 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/+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-031-0/+5
|
* 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
|
* Update CPU freq display to use NAN on errorBenny Baumann2020-09-241-1/+1
|
* Axe automated header generation.Zev Weiss2020-09-031-22/+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.
* Merge branch 'hishamhm-pull-920'3.0.0rc1Nathan Scott2020-08-201-0/+16
|\
| * Support for ZFS Compressed ARC statisticsRoss Williams2019-09-031-0/+8
| |
| * Refactor openzfs_sysctl_init() and ZfsArcMeter...Ross Williams2019-09-031-12/+1
| | | | | | | | | | | | | | | | | | | | | | openzfs_sysctl_init() now returns void instead of int. The ZfsArcStats->enabled flag is set inside the init function now, instead of having to be set from its return value. Preparation for more flag setting in Compressed ARC commit. ZfsArcMeter_readStats() added and all Meter->values[] setting moved to it, eliminating duplicated code in {darwin,freebsd,linux,solaris}/Platform.c.

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