summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenthe <guenther@cvs.openbsd.org>2009-06-05 00:30:06 +0000
committerPhilip Guenthe <guenther@cvs.openbsd.org>2009-06-05 00:30:06 +0000
commit544aa026f27246aa9a6f3fd57a69101b9adbf4fa (patch)
tree4a4cf508bd26f72fb73774a51fa4fc4c4801320c
parent948db6985e3ef14f4aeac282d48738a3cd64c599 (diff)
The names for p_flags bits had fallen out of date
-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 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) \