Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 8 Dec 1996 19:30:02 -0800 (PST)
From:      Bruce Evans <bde@zeta.org.au>
To:        freebsd-bugs
Subject:   Re: kern/2118: failure to write to vc w/o input
Message-ID:  <199612090330.TAA17882@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
The following reply was made to PR kern/2118; it has been noted by GNATS.

From: Bruce Evans <bde@zeta.org.au>
To: j@uriah.heep.sax.de, moke@winternet.com
Cc: freebsd-bugs@freebsd.org, sos@freebsd.org
Subject: Re: kern/2118: failure to write to vc w/o input
Date: Fri, 29 Nov 1996 21:18:36 +1100

 >> 	Text written to virtual consoles that are not waiting for input is
 >> 	not displayed. However once input is asked for, all lines pending
 >> 	will display.
 >
 >Uh, so perhaps _this_ is the reason why the emergency holographic
 >shell of 2.2's sysinstall vanishes when typing a command while the
 >installation is in progress?
 
 The tty plumbing for this is very strange:
 
 	$ cat >/dev/ttyv9		# on unused ttyv9
 	1
 	2
 	3
 	[pause]
 
 This gives no output on /dev/ttyv9.  Then on another tty:
 
 	$ cat /dev/ttyv9
 	1
 	2
 	3
 	$
 
 ttyv9 is acting like a pty.
 
 	$ cat /dev/ttyv9
 	1
 	2
 	3
 	$
 
 A buggy pty :-).  Now with the first cat terminated by ^D:
 
 	$ cat /dev/ttyv9
 	1
 	2
 	3
 	$
 
 A very buggy pty :-).
 
 Bruce



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199612090330.TAA17882>