mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
- Fix swap size calculation on i386
- Bump PORTREVISION PR: ports/169174 Submitted by: vsjcfm@gmail.com Approved by: maintainer (timeout,14 days)
This commit is contained in:
parent
0b4cec9764
commit
5ce613c55f
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=300640
@ -7,7 +7,7 @@
|
||||
|
||||
PORTNAME= htop
|
||||
PORTVERSION= 1.0.1
|
||||
PORTREVISION= 1
|
||||
PORTREVISION= 2
|
||||
CATEGORIES= sysutils
|
||||
MASTER_SITES= SF
|
||||
|
||||
|
@ -51,8 +51,8 @@
|
||||
+ kd = kvm_open(NULL, _PATH_DEVNULL, NULL, O_RDONLY, NULL);
|
||||
+ assert(kd != NULL);
|
||||
+ kvm_getswapinfo(kd, kvmswapinfo, 1, 0);
|
||||
+ this->totalSwap = kvmswapinfo[0].ksw_total * PAGE_SIZE / KB;
|
||||
+ this->usedSwap = kvmswapinfo[0].ksw_used * PAGE_SIZE / KB;
|
||||
+ this->totalSwap = kvmswapinfo[0].ksw_total * (PAGE_SIZE / KB);
|
||||
+ this->usedSwap = kvmswapinfo[0].ksw_used * (PAGE_SIZE / KB);
|
||||
+ kvm_close(kd);
|
||||
+ len = sizeof(this->totalMem);
|
||||
+ SYSCTLBYNAME("vm.stats.vm.v_page_count", this->totalMem, len);
|
||||
|
Loading…
Reference in New Issue
Block a user