diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-13 12:37:09 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2012-07-13 12:37:09 +0000 |
commit | 4a62390af8ed5a2c7814104b238141a869e5d451 (patch) | |
tree | c941eb95a2bffe0549ba7d9afb1a6dd3b4497efc /sys | |
parent | f66d679b5b221ffd587520d77c4d071fafa74e9c (diff) |
Try to avoid using the same wchan name twice.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/wscons/wsdisplay.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/wscons/wsdisplay.c b/sys/dev/wscons/wsdisplay.c index 5bf2f31ea37..ea45c1e3cd3 100644 --- a/sys/dev/wscons/wsdisplay.c +++ b/sys/dev/wscons/wsdisplay.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wsdisplay.c,v 1.105 2011/07/03 18:11:21 nicm Exp $ */ +/* $OpenBSD: wsdisplay.c,v 1.106 2012/07/13 12:37:08 deraadt Exp $ */ /* $NetBSD: wsdisplay.c,v 1.82 2005/02/27 00:27:52 perry Exp $ */ /* @@ -2040,7 +2040,7 @@ wsscreen_switchwait(struct wsdisplay_softc *sc, int no) s = spltty(); if (scr != sc->sc_focus) { scr->scr_flags |= SCR_WAITACTIVE; - res = tsleep(scr, PCATCH, "wswait", 0); + res = tsleep(scr, PCATCH, "wswait2", 0); if (scr != sc->sc_scr[no]) res = ENXIO; /* disappeared in the meantime */ else |