| 432 | #endif |
| 433 | |
| 434 | u_int |
| 435 | vm_free_count(void) |
| 436 | { |
| 437 | u_int v; |
| 438 | int i; |
| 439 | |
| 440 | v = 0; |
| 441 | for (i = 0; i < vm_ndomains; i++) |
| 442 | v += vm_dom[i].vmd_free_count; |
| 443 | |
| 444 | return (v); |
| 445 | } |
| 446 | |
| 447 | static u_int |
| 448 | vm_pagequeue_count(int pq) |
no outgoing calls
no test coverage detected