From 26c293c7ee2d3828f5210ca2c19abbdf7bbd09ab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Sun, 7 Oct 2001 19:47:37 +0000 Subject: [PATCH] These flags aren't just for procfs - in fact, these days theye are primarily used by ptrace(2) - so tweak the accompanying comments a little. --- sys/sys/proc.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 624cb86c7a0..3e55e1909eb 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -398,9 +398,9 @@ struct proc { sigset_t p_oldsigmask; /* (c) Saved mask from pre sigpause. */ int p_sig; /* (n) For core dump/debugger XXX. */ u_long p_code; /* (n) For core dump/debugger XXX. */ - 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_int p_stops; /* (c) Stop event bitmask. */ + u_int p_stype; /* (c) Stop event type. */ + char p_step; /* (c) Process is stopped. */ u_char p_pfsflags; /* (c) Procfs flags. */ struct nlminfo *p_nlminfo; /* (?) Only used by/for lockd. */ void *p_aioinfo; /* (c) ASYNC I/O info. */