summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorjulian <julian@FreeBSD.org>2002-08-08 06:09:32 +0000
committerjulian <julian@FreeBSD.org>2002-08-08 06:09:32 +0000
commit7b52c213d4ff6937252b491d3c09031d45ceabe2 (patch)
treef62b9032f1c89a86c71a063ddcaaab7fd2d48eab /sys
parent3b0ddae36e14f345ddbfb571d2838b236c78d073 (diff)
downloadFreeBSD-src-7b52c213d4ff6937252b491d3c09031d45ceabe2.zip
FreeBSD-src-7b52c213d4ff6937252b491d3c09031d45ceabe2.tar.gz
EAK! two status flags in teh proc structure were defined to the
same value! Picked up by: David Xu <bsddiy@yahoo.com>
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/proc.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index b8730e2..9587577 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -563,9 +563,9 @@ struct proc {
#define P_CONTINUED 0x10000 /* Proc has continued from a stopped state. */
/* flags that control how threads may be suspended for some reason */
-#define P_STOPPED_SGNL 0x10000 /* Stopped due to SIGSTOP/SIGTSTP */
-#define P_STOPPED_TRACE 0x20000 /* Stopped because of tracing */
-#define P_STOPPED_SNGL 0x40000 /* Only one thread can continue (not to user) */
+#define P_STOPPED_SGNL 0x20000 /* Stopped due to SIGSTOP/SIGTSTP */
+#define P_STOPPED_TRACE 0x40000 /* Stopped because of tracing */
+#define P_STOPPED_SNGL 0x80000 /* Only one thread can continue (not to user) */
#define P_SINGLE_EXIT 0x00400 /* Threads suspending should exit, not wait */
#define P_TRACED 0x00800 /* Debugged process being traced. */
#define P_STOPPED (P_STOPPED_SGNL|P_STOPPED_SNGL|P_STOPPED_TRACE)
OpenPOWER on IntegriCloud