Date: Thu, 27 Sep 2001 15:38:22 -0700 (PDT) From: Julian Elischer <julian@elischer.org> To: John Baldwin <jhb@FreeBSD.org> Cc: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys proc.h Message-ID: <Pine.BSF.4.21.0109271531150.65838-100000@InterJet.elischer.org> In-Reply-To: <200109272039.f8RKdrn08189@freefall.freebsd.org>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.BSF.4.21.0109271531150.65838-100000>
