| 445 | } |
| 446 | |
| 447 | static u_int |
| 448 | vm_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 | |
| 460 | u_int |
| 461 | vm_active_count(void) |
no outgoing calls
no test coverage detected