summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1994-11-13 12:46:08 +0000
committerDavid Greenman <dg@FreeBSD.org>1994-11-13 12:46:08 +0000
commit0d15e0ac1e28e9bb904a0a6f421ac430dd07764a (patch)
tree0b6cbf32340a9dd14d0638e5394adb7de245d893
parent07d0d0fc9cd544d33b9bb7b2ed102ee844f87944 (diff)
Notes
-rw-r--r--sys/sys/proc.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h
index 649565b08f15..86c9422b10db 100644
--- a/sys/sys/proc.h
+++ b/sys/sys/proc.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* @(#)proc.h 8.8 (Berkeley) 1/21/94
- * $Id: proc.h,v 1.11 1994/10/02 17:24:52 phk Exp $
+ * $Id: proc.h,v 1.12 1994/10/10 00:58:32 phk Exp $
*/
#ifndef _SYS_PROC_H_
@@ -195,8 +195,9 @@ struct proc {
#define P_WAITED 0x01000 /* Debugging process has waited for child. */
#define P_WEXIT 0x02000 /* Working on exiting. */
#define P_EXEC 0x04000 /* Process called exec. */
+#define P_SWAPPING 0x40000 /* Process is being swapped */
-/* Should probably be changed into a hold count. */
+/* Should probably be changed into a hold count (They have. -DG). */
#define P_NOSWAP 0x08000 /* Another flag to prevent swap out. */
#define P_PHYSIO 0x10000 /* Doing physical I/O. */