summaryrefslogtreecommitdiff
path: root/sys/vm/vm_object.c
diff options
context:
space:
mode:
authorJeffrey Hsu <hsu@FreeBSD.org>1996-03-11 06:11:43 +0000
committerJeffrey Hsu <hsu@FreeBSD.org>1996-03-11 06:11:43 +0000
commit1b67ec6de98bf12f0651066967dbb4d49f9216fa (patch)
tree583168ecffcc4146c31ee471fd066cc559e4afe1 /sys/vm/vm_object.c
parent2592172e853e2b804903278b9bc55936aac4f5c3 (diff)
Notes
Diffstat (limited to 'sys/vm/vm_object.c')
-rw-r--r--sys/vm/vm_object.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/vm/vm_object.c b/sys/vm/vm_object.c
index 381b6c5ef7b0..df60eab054fa 100644
--- a/sys/vm/vm_object.c
+++ b/sys/vm/vm_object.c
@@ -61,7 +61,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: vm_object.c,v 1.63 1996/01/19 04:00:02 dyson Exp $
+ * $Id: vm_object.c,v 1.64 1996/03/02 02:54:22 dyson Exp $
*/
/*
@@ -1344,7 +1344,7 @@ vm_object_in_map( object)
vm_object_t object;
{
struct proc *p;
- for (p = (struct proc *) allproc; p != NULL; p = p->p_next) {
+ for (p = allproc.lh_first; p != 0; p = p->p_list.le_next) {
if( !p->p_vmspace /* || (p->p_flag & (P_SYSTEM|P_WEXIT)) */)
continue;
/*