Argh, make P_ALRMPEND and P_PROFPEND be different flags.

Submitted by:	bde
Pointy hat to:	jhb
This commit is contained in:
John Baldwin 2000-10-06 16:17:12 +00:00
parent ff435dcb91
commit bb294ac6e9
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=66754

View File

@ -286,7 +286,7 @@ struct proc {
#define P_WEXIT 0x02000 /* Working on exiting. */
#define P_EXEC 0x04000 /* Process called exec. */
#define P_ALRMPEND 0x08000 /* Pending SIGVTALRM needs to be posted. */
#define P_PROFPEND 0x08000 /* Pending SIGPROF needs to be posted. */
#define P_PROFPEND 0x10000 /* Pending SIGPROF needs to be posted. */
/* Should probably be changed into a hold count. */
/* was P_NOSWAP 0x08000 was: Do not swap upages; p->p_hold */