summaryrefslogtreecommitdiffstats
path: root/sys/sys/vmmeter.h
diff options
context:
space:
mode:
Diffstat (limited to 'sys/sys/vmmeter.h')
-rw-r--r--sys/sys/vmmeter.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/sys/sys/vmmeter.h b/sys/sys/vmmeter.h
index a0b8cd2..793f32d 100644
--- a/sys/sys/vmmeter.h
+++ b/sys/sys/vmmeter.h
@@ -191,20 +191,20 @@ vm_paging_needed(void)
/* systemwide totals computed every five seconds */
struct vmtotal {
- uint16_t t_rq; /* length of the run queue */
- uint16_t t_dw; /* jobs in ``disk wait'' (neg priority) */
- uint16_t t_pw; /* jobs in page wait */
- uint16_t t_sl; /* jobs sleeping in core */
- uint16_t t_sw; /* swapped out runnable/short block jobs */
- uint32_t t_vm; /* total virtual memory */
- uint32_t t_avm; /* active virtual memory */
- uint32_t t_rm; /* total real memory in use */
- uint32_t t_arm; /* active real memory */
- uint32_t t_vmshr; /* shared virtual memory */
- uint32_t t_avmshr; /* active shared virtual memory */
- uint32_t t_rmshr; /* shared real memory */
- uint32_t t_armshr; /* active shared real memory */
- uint32_t t_free; /* free memory pages */
+ int16_t t_rq; /* length of the run queue */
+ int16_t t_dw; /* jobs in ``disk wait'' (neg priority) */
+ int16_t t_pw; /* jobs in page wait */
+ int16_t t_sl; /* jobs sleeping in core */
+ int16_t t_sw; /* swapped out runnable/short block jobs */
+ int32_t t_vm; /* total virtual memory */
+ int32_t t_avm; /* active virtual memory */
+ int32_t t_rm; /* total real memory in use */
+ int32_t t_arm; /* active real memory */
+ int32_t t_vmshr; /* shared virtual memory */
+ int32_t t_avmshr; /* active shared virtual memory */
+ int32_t t_rmshr; /* shared real memory */
+ int32_t t_armshr; /* active shared real memory */
+ int32_t t_free; /* free memory pages */
};
#endif
OpenPOWER on IntegriCloud