mostly dead.
This is more like belts and suspenders since a proc in exit1() will not
receive signals anymore and so proc_stop() should not be reachable. This
is even the case when sigexit() is called and a coredump() is happening.
OK mpi@
-/* $OpenBSD: kern_sig.c,v 1.324 2024/04/10 10:05:26 claudio Exp $ */
+/* $OpenBSD: kern_sig.c,v 1.325 2024/04/18 09:06:42 claudio Exp $ */
/* $NetBSD: kern_sig.c,v 1.54 1996/04/22 01:38:32 christos Exp $ */
/*
#ifdef MULTIPROCESSOR
SCHED_ASSERT_LOCKED();
#endif
+ /* do not stop exiting procs */
+ if (ISSET(p->p_flag, P_WEXIT))
+ return;
p->p_stat = SSTOP;
atomic_clearbits_int(&pr->ps_flags, PS_WAITED);