aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Cox <alc@FreeBSD.org>2004-07-06 17:35:10 +0000
committerAlan Cox <alc@FreeBSD.org>2004-07-06 17:35:10 +0000
commitfd2d3549084f707c24805951231d3df9cac56ac8 (patch)
tree831f6d3cfb2150a3577f57ef44d0a303216651d2
parent01ab535e8db6e6249f32a4d324a3d58ba637c564 (diff)
Notes
-rw-r--r--sys/vm/vm_map.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/vm_map.h b/sys/vm/vm_map.h
index 9e53550e1b04..c8cb74f26af8 100644
--- a/sys/vm/vm_map.h
+++ b/sys/vm/vm_map.h
@@ -220,7 +220,6 @@ vm_map_modflags(vm_map_t map, vm_flags_t set, vm_flags_t clear)
struct vmspace {
struct vm_map vm_map; /* VM address map */
struct pmap vm_pmap; /* private physical map */
- int vm_refcnt; /* number of references */
struct shmmap_state *vm_shm; /* SYS5 shared memory private data XXX */
/* we copy between vm_startcopy and vm_endcopy on fork */
#define vm_startcopy vm_swrss
@@ -233,6 +232,7 @@ struct vmspace {
caddr_t vm_maxsaddr; /* user VA at max stack growth */
#define vm_endcopy vm_exitingcnt
int vm_exitingcnt; /* several processes zombied in exit1 */
+ int vm_refcnt; /* number of references */
};
#ifdef _KERNEL