svn commit: r219906 - head/sys/sys

John Baldwin jhb at FreeBSD.org
Wed Mar 23 13:46:18 UTC 2011


Author: jhb
Date: Wed Mar 23 13:46:17 2011
New Revision: 219906
URL: http://svn.freebsd.org/changeset/base/219906

Log:
  Update a comment.  The kernel stopped using the S* process state constants
  a long time ago.

Modified:
  head/sys/sys/proc.h

Modified: head/sys/sys/proc.h
==============================================================================
--- head/sys/sys/proc.h	Wed Mar 23 13:44:32 2011	(r219905)
+++ head/sys/sys/proc.h	Wed Mar 23 13:46:17 2011	(r219906)
@@ -487,7 +487,7 @@ struct proc {
 		PRS_NEW = 0,		/* In creation */
 		PRS_NORMAL,		/* threads can be run. */
 		PRS_ZOMBIE
-	} p_state;			/* (j/c) S* process status. */
+	} p_state;			/* (j/c) Process status. */
 	pid_t		p_pid;		/* (b) Process identifier. */
 	LIST_ENTRY(proc) p_hash;	/* (d) Hash chain. */
 	LIST_ENTRY(proc) p_pglist;	/* (g + e) List of processes in pgrp. */


More information about the svn-src-head mailing list