-/* $OpenBSD: sab.c,v 1.37 2019/10/12 15:55:31 cheloha Exp $ */
+/* $OpenBSD: sab.c,v 1.38 2021/09/01 16:10:39 jan Exp $ */
/*
* Copyright (c) 2001 Jason L. Wright (jason@thought.net)
tp->t_state |= TS_WOPEN;
error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
- "sabttycd");
+ ttopen);
if (error != 0) {
splx(s);
tp->t_state &= ~TS_WOPEN;
-/* $OpenBSD: cy.c,v 1.40 2021/03/07 06:21:38 jsg Exp $ */
+/* $OpenBSD: cy.c,v 1.41 2021/09/01 16:10:39 jan Exp $ */
/*
* Copyright (c) 1996 Timo Rossi.
* All rights reserved.
!ISSET(tp->t_state, TS_CARR_ON)) {
SET(tp->t_state, TS_WOPEN);
error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
- "cydcd");
+ ttopen);
if (error != 0) {
splx(s);
CLR(tp->t_state, TS_WOPEN);
-/* $OpenBSD: magma.c,v 1.32 2020/05/23 09:44:20 mpi Exp $ */
+/* $OpenBSD: magma.c,v 1.33 2021/09/01 16:10:39 jan Exp $ */
/*-
* Copyright (c) 1998 Iain Hibbert
int error;
SET(tp->t_state, TS_WOPEN);
- error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH, "mttydcd");
+ error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
+ ttopen);
if (error != 0) {
splx(s);
CLR(tp->t_state, TS_WOPEN);
-/* $OpenBSD: spif.c,v 1.24 2020/05/23 09:44:20 mpi Exp $ */
+/* $OpenBSD: spif.c,v 1.25 2021/09/01 16:10:39 jan Exp $ */
/*
* Copyright (c) 1999-2002 Jason L. Wright (jason@thought.net)
SET(tp->t_state, TS_WOPEN);
error = ttysleep(tp, &tp->t_rawq, TTIPRI | PCATCH,
- "sttycd");
+ ttopen);
if (error != 0) {
splx(s);
CLR(tp->t_state, TS_WOPEN);