diff options
author | Ian Moffett <ian@osmora.org> | 2025-10-11 13:49:47 -0400 |
---|---|---|
committer | Ian Moffett <ian@osmora.org> | 2025-10-11 13:49:47 -0400 |
commit | 29428812855bd38cd450315260218c0c27ef08da (patch) | |
tree | db74729ecb4d10dc0d2aae77e7476a2fc2e4d9ab /src/sys/arch/amd64 | |
parent | 73cd54a1f5fbdefbafff9227f5d00feb86b4199e (diff) |
kern: proc: Remove redundant flag set
The PROC_EXITING flag is already set within the MI layer of the process
management core
Signed-off-by: Ian Moffett <ian@osmora.org>
Diffstat (limited to 'src/sys/arch/amd64')
-rw-r--r-- | src/sys/arch/amd64/os/os_proc.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sys/arch/amd64/os/os_proc.c b/src/sys/arch/amd64/os/os_proc.c index 1f2f568..f2eb2b3 100644 --- a/src/sys/arch/amd64/os/os_proc.c +++ b/src/sys/arch/amd64/os/os_proc.c @@ -252,9 +252,6 @@ md_proc_kill(struct proc *procp, int flags) procp = core->curproc; } - /* Show others we are exiting */ - procp->flags |= PROC_EXITING; - /* Free every range */ TAILQ_FOREACH(range, &procp->maplist, link) { if (range == NULL) { |