diff options
author | 2009-06-05 00:30:05 +0000 | |
---|---|---|
committer | 2009-06-05 00:30:05 +0000 | |
commit | bd0dd74c7c03f72ab2ff975e6724aa101f898628 (patch) | |
tree | f431d999fe1f9dfde399b6a0ff4bf2cbe8c9b084 | |
parent | some KNF cleanup following the last sed. (diff) | |
download | wireguard-openbsd-bd0dd74c7c03f72ab2ff975e6724aa101f898628.tar.xz wireguard-openbsd-bd0dd74c7c03f72ab2ff975e6724aa101f898628.zip |
The names for p_flags bits had fallen out of date
-rw-r--r-- | sys/sys/proc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index be766faa946..aa442beb5e7 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: proc.h,v 1.118 2009/06/02 23:05:31 guenther Exp $ */ +/* $OpenBSD: proc.h,v 1.119 2009/06/05 00:30:05 guenther Exp $ */ /* $NetBSD: proc.h,v 1.44 1996/04/22 01:23:21 christos Exp $ */ /*- @@ -308,11 +308,11 @@ struct proc { #define P_CPUPEG 0x40000000 /* Do not move to another cpu. */ #define P_BITS \ - ("\20\01ADVLOCK\02CTTY\04NOCLDSTOP\05PPWAIT\06PROFIL\07SELECT" \ + ("\20\02CONTROLT\03INMEM\04NOCLDSTOP\05PPWAIT\06PROFIL\07SELECT" \ "\010SINTR\011SUGID\012SYSTEM\013TIMEOUT\014TRACED\015WAITED\016WEXIT" \ "\017EXEC\020PWEUPC\022SSTEP\023SUGIDEXEC\024NOCLDWAIT" \ "\025NOZOMBIE\026INEXEC\027SYSTRACE\030CONTINUED\032BIGLOCK" \ - "\033THREAD\034IGNEXITRV\035SOFTDEP\036STOPPED") + "\033THREAD\034IGNEXITRV\035SOFTDEP\036STOPPED\037CPUPEG") /* Macro to compute the exit signal to be delivered. */ #define P_EXITSIG(p) \ |