mirror of
https://github.com/nicolargo/glances.git
synced 2024-12-21 16:22:03 +03:00
Reverse pull 139
This commit is contained in:
parent
7579431ce9
commit
dbd6f0afcc
@ -728,12 +728,12 @@ class GlancesStats:
|
||||
phymem = psutil.virtual_memory()
|
||||
|
||||
# buffers and cached (Linux, BSD)
|
||||
buffers = getattr(phymem, 'buffers', lambda: 0)()
|
||||
cached = getattr(phymem, 'cached', lambda: 0)()
|
||||
buffers = getattr(phymem, 'buffers', lambda: 0)
|
||||
cached = getattr(phymem, 'cached', lambda: 0)
|
||||
|
||||
# active and inactive not available on Windows
|
||||
active = getattr(phymem, 'active', lambda: 0)()
|
||||
inactive = getattr(phymem, 'inactive', lambda: 0)()
|
||||
active = getattr(phymem, 'active', lambda: 0)
|
||||
inactive = getattr(phymem, 'inactive', lambda: 0)
|
||||
|
||||
# phymem free and usage
|
||||
total = phymem.total
|
||||
|
Loading…
Reference in New Issue
Block a user