summaryrefslogtreecommitdiffstats
path: root/sys/sparc64
diff options
context:
space:
mode:
authorjake <jake@FreeBSD.org>2002-09-02 23:46:13 +0000
committerjake <jake@FreeBSD.org>2002-09-02 23:46:13 +0000
commite4c39d59fffad17f73916cb29166683248b78231 (patch)
tree9d9df3ebdda15f22f4263ce73239ada5d0004d36 /sys/sparc64
parent2271d6f41de319213a0112b7b564b815dbb9fdf5 (diff)
downloadFreeBSD-src-e4c39d59fffad17f73916cb29166683248b78231.zip
FreeBSD-src-e4c39d59fffad17f73916cb29166683248b78231.tar.gz
Remove an unneeded PROC_LOCK, which caused lock recursion panics.
Print a warning about old applications with no signal trampoline. Reported by: marius@alchemy.franken.de
Diffstat (limited to 'sys/sparc64')
-rw-r--r--sys/sparc64/sparc64/machdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/sparc64/sparc64/machdep.c b/sys/sparc64/sparc64/machdep.c
index a17c7a3..39523fe 100644
--- a/sys/sparc64/sparc64/machdep.c
+++ b/sys/sparc64/sparc64/machdep.c
@@ -377,7 +377,7 @@ sendsig(sig_t catcher, int sig, sigset_t *mask, u_long code)
* No signal tramoline... kill the process.
*/
CTR0(KTR_SIG, "sendsig: no sigtramp");
- PROC_LOCK(p);
+ printf("sendsig: %s is too old, rebuild it\n", p->p_comm);
sigexit(td, sig);
/* NOTREACHED */
}
OpenPOWER on IntegriCloud