From owner-cvs-all Thu Sep 27 14:44:58 2001 Delivered-To: cvs-all@freebsd.org Received: from InterJet.elischer.org (c421509-a.pinol1.sfba.home.com [24.7.86.9]) by hub.freebsd.org (Postfix) with ESMTP id C9A4F37B40B; Thu, 27 Sep 2001 14:44:43 -0700 (PDT) Received: from localhost (localhost.elischer.org [127.0.0.1]) by InterJet.elischer.org (8.9.1a/8.9.1) with ESMTP id PAA67002; Thu, 27 Sep 2001 15:38:24 -0700 (PDT) Date: Thu, 27 Sep 2001 15:38:22 -0700 (PDT) From: Julian Elischer To: John Baldwin Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys proc.h In-Reply-To: <200109272039.f8RKdrn08189@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Pitty: I think pid_t p_oppid; /* (c + e) Save ppid in ptrace.*/ struct vmspace *p_vmspace; /* (b) Address space. */ u_int p_swtime; /* (j) Time swapped in or out. */ struct itimerval p_realtimer; /* (h?/k?) Alarm timer. */ u_int64_t p_runtime; /* (j) Real time in microsec. */ int p_traceflag; /* (j?) Kernel trace points. */ struct vnode *p_tracep; /* (j?) Trace to vnode. */ sigset_t p_siglist; /* (c) Sigs arrived, notdelivered. */ struct vnode *p_textvp; /* (b) Vnode of executable. */ struct mtx p_mtx; /* (k) Lock for this struct. */ char p_lock; /* (c) Proclock count. */ struct klist p_klist; /* (c) Knotes to this proc. */ struct sigiolst p_sigiolst; /* (c) List of sigio sources. */ int p_sigparent; /* (c) Signal to parent onexit. */ sigset_t p_oldsigmask; /* (c) Saved mask from presigpause. */ int p_sig; /* (n) For core dump/debugger*/ u_long p_code; /* (n) For core dump/debugger*/ u_int p_stops; /* (c) Procfs event bitmask. */ u_int p_stype; /* (c) Procfs stop event type. */ char p_step; /* (c) Procfs stop *once* flag. */ u_char p_pfsflags; /* (c) Procfs flags. */ struct nlminfo *p_nlminfo; /* (?) only used by/for lockd */ is more readable than #define p_startzero p_oppid pid_t p_oppid; /* (c + e) Save ppid in ptrace.*/ struct vmspace *p_vmspace; /* (b) Address space. */ u_int p_swtime; /* (j) Time swapped in or out. */ struct itimerval p_realtimer; /* (h?/k?) Alarm timer. */ u_int64_t p_runtime; /* (j) Real time in microsec. */ int p_traceflag; /* (j?) Kernel trace points. */ struct vnode *p_tracep; /* (j?) Trace to vnode. */ sigset_t p_siglist; /* (c) Sigs arrived, notdelivered. */ struct vnode *p_textvp; /* (b) Vnode of executable. */ struct mtx p_mtx; /* (k) Lock for this struct. */ char p_lock; /* (c) Proclock count. */ struct klist p_klist; /* (c) Knotes to this proc. */ struct sigiolst p_sigiolst; /* (c) List of sigio sources. */ int p_sigparent; /* (c) Signal to parent onexit. */ sigset_t p_oldsigmask; /* (c) Saved mask from presigpause. */ int p_sig; /* (n) For core dump/debugge */ u_long p_code; /* (n) For core dump/debugge */ u_int p_stops; /* (c) Procfs event bitmask. */ u_int p_stype; /* (c) Procfs stop event type. */ char p_step; /* (c) Procfs stop *once* flag. */ u_char p_pfsflags; /* (c) Procfs flags. */ struct nlminfo *p_nlminfo; /* (?) Only used by/for lockd. */ On Thu, 27 Sep 2001, John Baldwin wrote: > jhb 2001/09/27 13:39:52 PDT > > Modified files: > sys/sys proc.h > Log: > Restore this file to style(9). Mostly consists of whitespace fixes in the > structure definitions. There were some older whitespace bogons as well. > > Revision Changes Path > 1.185 +128 -129 src/sys/sys/proc.h > > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message