p_leader is only set at fork1() time, so update its locking note

appropriately.
This commit is contained in:
John Baldwin 2002-05-10 14:28:05 +00:00
parent 0f92104c14
commit 2c6c9ea2bd

View File

@ -451,7 +451,7 @@ struct proc {
u_short p_acflag; /* (c) Accounting flags. */
struct rusage *p_ru; /* (a) Exit information. XXX */
struct proc *p_peers; /* (c) */
struct proc *p_leader; /* (c) */
struct proc *p_leader; /* (b) */
void *p_emuldata; /* (c) Emulator state data. */
};