diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-01 20:44:46 +0000 | 
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-05-01 20:44:46 +0000 | 
| commit | f132072368c112104e35151ee7a1c30a1b74a107 (patch) | |
| tree | 47fe7acf6ad89bf88d96ff3e57b5a8e31207cbf6 /sys/kern/tty.c | |
| parent | 3498b5ed098ffe6c6bc8e1679da55335a40e055d (diff) | |
Notes
Diffstat (limited to 'sys/kern/tty.c')
| -rw-r--r-- | sys/kern/tty.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 6e4ca184315d..7b3459acc213 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -2289,7 +2289,7 @@ ttwakeup(tp)  	if (SEL_WAITING(&tp->t_rsel))  		selwakeup(&tp->t_rsel);  	if (ISSET(tp->t_state, TS_ASYNC) && tp->t_sigio != NULL) -		pgsigio(tp->t_sigio, SIGIO, (tp->t_session != NULL)); +		pgsigio(&tp->t_sigio, SIGIO, (tp->t_session != NULL));  	wakeup(TSA_HUP_OR_INPUT(tp));  	KNOTE(&tp->t_rsel.si_note, 0);  } @@ -2305,7 +2305,7 @@ ttwwakeup(tp)  	if (SEL_WAITING(&tp->t_wsel) && tp->t_outq.c_cc <= tp->t_olowat)  		selwakeup(&tp->t_wsel);  	if (ISSET(tp->t_state, TS_ASYNC) && tp->t_sigio != NULL) -		pgsigio(tp->t_sigio, SIGIO, (tp->t_session != NULL)); +		pgsigio(&tp->t_sigio, SIGIO, (tp->t_session != NULL));  	if (ISSET(tp->t_state, TS_BUSY | TS_SO_OCOMPLETE) ==  	    TS_SO_OCOMPLETE && tp->t_outq.c_cc == 0) {  		CLR(tp->t_state, TS_SO_OCOMPLETE);  | 
