diff options
| author | Bruce M Simpson <bms@FreeBSD.org> | 2003-10-06 01:47:12 +0000 |
|---|---|---|
| committer | Bruce M Simpson <bms@FreeBSD.org> | 2003-10-06 01:47:12 +0000 |
| commit | 2bc7dd566109712f59c836995384613c88bdd803 (patch) | |
| tree | 008a39b1576b985c04df774cca557ae9a75edfd1 /sys/vm/vm_map.c | |
| parent | a50f62fd9f3fd10d204cf68acb3a8aa32e036fac (diff) | |
Notes
Diffstat (limited to 'sys/vm/vm_map.c')
| -rw-r--r-- | sys/vm/vm_map.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/sys/vm/vm_map.c b/sys/vm/vm_map.c index 4492f9b65dcc..6ae9eddcb6dd 100644 --- a/sys/vm/vm_map.c +++ b/sys/vm/vm_map.c @@ -477,6 +477,12 @@ vmspace_resident_count(struct vmspace *vmspace) return pmap_resident_count(vmspace_pmap(vmspace)); } +long +vmspace_wired_count(struct vmspace *vmspace) +{ + return pmap_wired_count(vmspace_pmap(vmspace)); +} + /* * vm_map_create: * |
