mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-20 11:11:24 +00:00
Correct locking annotation for p_comm.
p_comm is changed during exec, it is not read-only after fork. Pointed out by: rwatson Approved by: re (gjb, kib) MFC after: 1 week
This commit is contained in:
parent
6415e9aafb
commit
e4f5c8783e
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=302379
@ -602,7 +602,7 @@ struct proc {
|
||||
u_int p_magic; /* (b) Magic number. */
|
||||
int p_osrel; /* (x) osreldate for the
|
||||
binary (from ELF note, if any) */
|
||||
char p_comm[MAXCOMLEN + 1]; /* (b) Process name. */
|
||||
char p_comm[MAXCOMLEN + 1]; /* (x) Process name. */
|
||||
struct sysentvec *p_sysent; /* (b) Syscall dispatch info. */
|
||||
struct pargs *p_args; /* (c) Process arguments. */
|
||||
rlim_t p_cpulimit; /* (c) Current CPU limit in seconds. */
|
||||
|
Loading…
Reference in New Issue
Block a user