From 0f2fe5396f856a06b629fea4631f5aef7a34ada4 Mon Sep 17 00:00:00 2001 From: Julian Elischer Date: Thu, 8 Aug 2002 06:09:32 +0000 Subject: [PATCH] EAK! two status flags in teh proc structure were defined to the same value! Picked up by: David Xu --- 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 b8730e21db3f..95875770dde6 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)