CVSROOT: /cvs Module name: src Changes by: clau...@cvs.openbsd.org 2024/10/09 02:39:49
Modified files: sys/kern : kern_sig.c sys/sys : signalvar.h Log message: Convert prsignal() into a real function Also do not use ps_mainproc as the thread the signal is send to. Sending a signal to ps_mainproc may not work reliably if it already exited. Use TAILQ_FIRST(&pr->ps_threads) instead but first check that the process has not yet entered exit1(). OK mpi@