diff options
-rw-r--r-- | sys/sys/proc.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sys/proc.h b/sys/sys/proc.h index 3a14e34..03bb2b6 100644 --- a/sys/sys/proc.h +++ b/sys/sys/proc.h @@ -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 */ |