From 3598578c2bea07c7eb1651b74fb96adab21bc1e8 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Mon, 7 Apr 1997 09:35:15 +0000 Subject: [PATCH] Move p_vmspace into the startzero section since we've just changed things and may as well get it over and done with. --- sys/sys/proc.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 84159ff11af..bc65877a918 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)proc.h 8.15 (Berkeley) 5/19/95 - * $Id: proc.h,v 1.33 1997/03/03 09:51:12 ache Exp $ + * $Id: proc.h,v 1.34 1997/04/07 07:16:02 peter Exp $ */ #ifndef _SYS_PROC_H_ @@ -92,7 +92,6 @@ struct proc { struct pstats *p_stats; /* Accounting/statistics (PROC ONLY). */ struct plimit *p_limit; /* Process limits. */ struct vm_object *p_upages_obj;/* Upages object */ - struct vmspace *p_vmspace; /* Address space. */ struct sigacts *p_sigacts; /* Signal actions, state (PROC ONLY). */ #define p_ucred p_cred->pc_ucred @@ -114,6 +113,8 @@ struct proc { pid_t p_oppid; /* Save parent pid during ptrace. XXX */ int p_dupfd; /* Sideways return value from fdopen. XXX */ + struct vmspace *p_vmspace; /* Address space. */ + /* scheduling */ u_int p_estcpu; /* Time averaged value of p_cpticks. */ int p_cpticks; /* Ticks of cpu time. */