Home
last modified time | relevance | path

Searched defs:vmtotal (Results 1 – 3 of 3) sorted by relevance

/f-stack/freebsd/sys/
H A Dvmmeter.h44 struct vmtotal { struct
45 uint64_t t_vm; /* total virtual memory */
46 uint64_t t_avm; /* active virtual memory */
48 uint64_t t_arm; /* active real memory */
49 uint64_t t_vmshr; /* shared virtual memory */
51 uint64_t t_rmshr; /* shared real memory */
53 uint64_t t_free; /* free memory pages */
54 int16_t t_rq; /* length of the run queue */
57 int16_t t_pw; /* threads in page wait */
59 int16_t t_sw; /* swapped out runnable/short
[all …]
/f-stack/tools/sysctl/
H A Dsysctl.c97 struct vmtotal { struct
98 int16_t t_rq; /* length of the run queue */
100 int16_t t_pw; /* jobs in page wait */
101 int16_t t_sl; /* jobs sleeping in core */
103 int32_t t_vm; /* total virtual memory */
104 int32_t t_avm; /* active virtual memory */
105 int32_t t_rm; /* total real memory in use */
106 int32_t t_arm; /* active real memory */
107 int32_t t_vmshr; /* shared virtual memory */
109 int32_t t_rmshr; /* shared real memory */
[all …]
/f-stack/freebsd/vm/
H A Dvm_meter.c180 vmtotal(SYSCTL_HANDLER_ARGS) in vmtotal() function