summaryrefslogtreecommitdiffstats
path: root/freebsd
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'hishamhm-pull-920'3.0.0rc1Nathan Scott2020-08-204-17/+36
|\
| * Support for ZFS Compressed ARC statisticsRoss Williams2019-09-032-0/+10
| |
| * Refactor openzfs_sysctl_init() and ZfsArcMeter...Ross Williams2019-09-032-13/+2
| | | | | | | | | | | | | | | | | | | | | | 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.
| * Refactor common OpenZFS sysctl accessRoss Williams2019-07-073-83/+22
| | | | | | | | | | Darwin and FreeBSD export zfs kstats through the same APIs, so moving functions into a common file.
| * Support ZFS ARC stats on FreeBSDRoss Williams2019-07-074-2/+73
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
| * Specify correct MIB lengthRoss Williams2019-07-061-1/+1
| | | | | | | | | | Could have resulted in a buffer overflow if the FreeBSD kernel returned more bytes than expected.
* | Merge branch 'hishamhm-pull-932'Nathan Scott2020-08-201-0/+3
|\ \
| * | Show N/A on unsupported platforms instead of 0KHzArnavion2019-08-101-0/+3
| |/
* | Merge branch 'hishamhm-pull-974'Nathan Scott2020-08-201-0/+8
|\ \
| * | Fix STARTTIME column on FreeBSD.Robert Crowston2019-12-311-0/+8
| |/
* | Merge branch 'hishamhm-pull-904'Nathan Scott2020-08-201-1/+1
|\ \
| * | Truncate overwide jail names on BSD.Robert Crowston2019-04-171-1/+1
| |/
* | Merge branch 'hishamhm-pull-871'Nathan Scott2020-08-201-18/+33
|\ \
| * | Fix memory statistics display on FreeBSD/powerpcTobias Kortkamp2018-12-241-18/+33
| |/ | | | | | | | | | | | | | | | | | | | | | | | | Use the appropriate types when calling sysctl(). Currently, `unsigned long long int` is used for all sizes and on FreeBSD/powerpc this causes all sysctl() calls in scanMemoryInfo() to fail as they are actually of different sizes on powerpc, where (sizeof(unsigned long long int), sizeof(u_long)) == (8, 4) vs (8, 8) on amd64. This results in bogus memory sizes being reported by htop. Signed-off-by: Tobias Kortkamp <tobik@FreeBSD.org>
* / 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
* Security review: check results of snprintf.Hisham Muhammad2017-07-272-3/+3
| | | | | Calls marked with xSnprintf shouldn't fail. Abort program cleanly if any of them does.
* Issue #502 fix SID colunm header widthKamyar Rasta2017-02-051-1/+1
|
* Issue #502 update Session ID columnKamyar Rasta2017-02-011-2/+2
|
* Interpret TTY_NR column on Linux,Hisham2016-10-011-1/+1
| | | | | translate dev_t to major:minor on other platforms. Closes #316.
* Merge branch 'master' of https://github.com/hishamhm/htopHisham2016-08-302-4/+4
|\
| * 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>
* | Fix typos, by @Gelma.Hisham2016-08-301-6/+6
|/ | | | Closes #546.
* Merge pull request #496 from tcreech/lwp_hackHisham Muhammad2016-05-191-5/+1
|\ | | | | FreeBSD: fix multithreaded CPU% in process list
| * FreeBSD: use KERN_PROC_PROC with kvm_getprocs to avoid erroneously combining ↵Tim Creech2016-02-281-5/+1
| | | | | | | | LWPs
* | Revert "Fix FreeBSD CPU% calculation"Andy Pilate2016-04-281-5/+5
| | | | | | | | This reverts commit f554f08fa92f8440faa853b5fa4d588829959c8a.
* | Prepare for release 2.0.1.2.0.1Hisham2016-03-071-1/+0
| |
* | Avoid global, as done by @gaod in #387.Hisham Muhammad2016-03-072-7/+1
| |
* | Merge branch 'master' of https://github.com/Sp1l/htop into Sp1l-masterHisham Muhammad2016-03-072-8/+10
|\ \
| * | Fix FreeBSD CPU% calculationBernard Spil2016-02-141-5/+5
| | |
| * | Fix memory percentage display on FreeBSDBernard Spil2016-02-141-3/+5
| | |
* | | Improve error reporting on FreeBSD libkvm callMichael McConville2016-03-051-4/+8
| |/ |/| | | | | | | | | | | This involves switching from kvm_open(3) to kvm_openfiles(3). The only difference is that the latter has saner error reporting (see the man page for details). We can now fatally report the error rather than just calling assert(3).
* | Fix low CPU usage reporting in FreeBSDTim Creech2016-02-261-3/+3
| |
* | Add MEM% for processes in process list on FreeBSD.Hung-Yi Chen2016-02-131-0/+2
|/
* Suppress compiler warnings.Hung-Yi Chen2016-02-132-2/+3
|
* fix process memory on FreeBSDGreg V2016-02-111-2/+2
|
* add FreeBSD battery supportGreg V2016-02-111-4/+14
|
* Merge branch 'xalloc'Hisham2016-02-022-12/+12
|\
| * Check for failure in allocations.Hisham2016-02-022-12/+12
| |
* | Add generated header.Hisham2016-01-311-2/+26
|/
* Introduce CLAMP macro. Unify all MIN(MAX(a,b),c) uses.Explorer092016-01-152-1/+11
| | | | | | | | | | | | | | | | | | | | | | | With the CLAMP macro replacing the combination of MIN and MAX, we will have at least two advantages: 1. It's more obvious semantically. 2. There are no more mixes of confusing uses like MIN(MAX(a,b),c) and MAX(MIN(a,b),c) and MIN(a,MAX(b,c)) appearing everywhere. We unify the 'clamping' with a single macro. Note that the behavior of this CLAMP macro is different from the combination `MAX(low,MIN(x,high))`. * This CLAMP macro expands to two comparisons instead of three from MAX and MIN combination. In theory, this makes the code slightly smaller, in case that (low) or (high) or both are computed at runtime, so that compilers cannot optimize them. (The third comparison will matter if (low)>(high); see below.) * CLAMP has a side effect, that if (low)>(high) it will produce weird results. Unlike MIN & MAX which will force either (low) or (high) to win. No assertion of ((low)<=(high)) is done in this macro, for now. This CLAMP macro is implemented like described in glib <http://developer.gnome.org/glib/stable/glib-Standard-Macros.html> and does not handle weird uses like CLAMP(a++, low++, high--) .
* Merge remote-tracking branch 'upstream/master' into envscreenMichael Klein2016-01-063-34/+331
|\
| * Merge branch 'freebsd-free' of https://github.com/mmcco/htop into ↵Hisham Muhammad2016-01-041-4/+4
| |\ | | | | | | | | | mmcco-freebsd-free
| | * Remove NULL-checks before free()Michael McConville2016-01-031-4/+4
| | | | | | | | | | | | These are never necessary when using the standard library.
| * | Plug leak in FreeBSD backend, as noted by @mmcco in #334.Hisham Muhammad2016-01-041-0/+1
| |/
| * Fix spelling of "maintainer"Michael McConville2016-01-021-1/+1
| |
| * fixed bug with PPID of parent not being set on first process list scan pass.Martin "eto" Misuth2015-12-171-0/+1
| | | | | | | | | | | | this caused htop to show processes as if freebsd kernel was their parent. on next pass reparenting code took chance to run, and that caused process to jump around. this fixed behaviour should be the correct one
| * enabled swap meterMartin "eto" Misuth2015-12-131-1/+3
| |
| * added Support for memory meter, and slightly adjusted process monitor logicMartin "eto" Misuth2015-12-132-29/+135
| |
| * added CPU% for processes in process listMartin "eto" Misuth2015-12-131-1/+17
| |
| * added cpu monitoring for both single core and smp systems, some notes in ↵Martin "eto" Misuth2015-12-132-21/+188
| | | | | | | | process monitor

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