MCPcopy Create free account
hub / github.com/F-Stack/f-stack / vm_pagequeue_count

Function vm_pagequeue_count

freebsd/vm/vm_meter.c:447–458  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

445}
446
447static u_int
448vm_pagequeue_count(int pq)
449{
450 u_int v;
451 int i;
452
453 v = 0;
454 for (i = 0; i < vm_ndomains; i++)
455 v += vm_dom[i].vmd_pagequeues[pq].pq_cnt;
456
457 return (v);
458}
459
460u_int
461vm_active_count(void)

Callers 3

vm_active_countFunction · 0.85
vm_inactive_countFunction · 0.85
vm_laundry_countFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected