diff options
author | phk <phk@FreeBSD.org> | 2004-12-20 21:38:13 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2004-12-20 21:38:13 +0000 |
commit | 1a55c4023a1dab35542d7f235af9481a3f809031 (patch) | |
tree | 2d538aea2501037b9cc62520f443aa43d02f61a7 | |
parent | 0faeb292ed219df549f255578f74531a32900d18 (diff) | |
download | FreeBSD-src-1a55c4023a1dab35542d7f235af9481a3f809031.zip FreeBSD-src-1a55c4023a1dab35542d7f235af9481a3f809031.tar.gz |
fix a misleading sleep identifier.
-rw-r--r-- | sys/kern/tty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index d359f8d..ddf26b5 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -3111,7 +3111,7 @@ open_top: if (flag & O_NONBLOCK) return (EBUSY); error = tsleep(&tp->t_actout, - TTIPRI | PCATCH, "siobi", 0); + TTIPRI | PCATCH, "ttybi", 0); if (error != 0 || (tp->t_flags & TS_GONE)) goto out; goto open_top; |