9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* [9fans] drawterm's #i
@ 2003-08-16 23:02 Skip Tavakkolian
  2003-08-17  5:14 ` Russ Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Skip Tavakkolian @ 2003-08-16 23:02 UTC (permalink / raw)
  To: 9fans

On a term when I cpu over and check '/dev/draw' I see the actual
windows. With drawterm, each window seems to get a new copy
of '/dev/draw' namespace. More accurately you can some of the windows
(winwatch, page -w, stats, etc.) but not windows running rc.  Why
is that?  Thanks



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] drawterm's #i
  2003-08-16 23:02 [9fans] drawterm's #i Skip Tavakkolian
@ 2003-08-17  5:14 ` Russ Cox
  2003-08-17  6:45   ` Skip Tavakkolian
  0 siblings, 1 reply; 4+ messages in thread
From: Russ Cox @ 2003-08-17  5:14 UTC (permalink / raw)
  To: 9fans

Skip Tavakkolian wrote:

>On a term when I cpu over and check '/dev/draw' I see the actual
>windows. With drawterm, each window seems to get a new copy
>of '/dev/draw' namespace. More accurately you can some of the windows
>(winwatch, page -w, stats, etc.) but not windows running rc.  Why
>is that?  Thanks
>
>

Running 5 drawterms is like sitting at 5 different physical terminals.
In both cases you can't see stuff about one terminal when sitting at
another.

Russ




^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] drawterm's #i
  2003-08-17  5:14 ` Russ Cox
@ 2003-08-17  6:45   ` Skip Tavakkolian
  2003-08-17 14:00     ` Russ Cox
  0 siblings, 1 reply; 4+ messages in thread
From: Skip Tavakkolian @ 2003-08-17  6:45 UTC (permalink / raw)
  To: 9fans

>>On a term when I cpu over and check '/dev/draw' I see the actual
>>windows. With drawterm, each window seems to get a new copy
>>of '/dev/draw' namespace. More accurately you can some of the windows
>>(winwatch, page -w, stats, etc.) but not windows running rc.  Why
>>is that?  Thanks
>>
>>
>
> Running 5 drawterms is like sitting at 5 different physical terminals.
> In both cases you can't see stuff about one terminal when sitting at
> another.

What I see (all in one drawterm session) is this. I 'New' a window and then:

cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu% page -w *1.jpg
cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/21
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu% window rc		# rc window wont show up, why?
cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/21
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu% window stats -elcm
cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/21
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/23
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu% window winwatch
cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/21
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/23
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/24
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu% window rc		# again the rc window is not showing
cpu% ls -l /dev/draw
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/1
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/21
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/23
d-r-xr-xr-x M 125 fst fst 0 Dec 31  1969 /dev/draw/24
--rw-rw-rw- M 125 fst fst 0 Dec 31  1969 /dev/draw/new
cpu%



^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [9fans] drawterm's #i
  2003-08-17  6:45   ` Skip Tavakkolian
@ 2003-08-17 14:00     ` Russ Cox
  0 siblings, 0 replies; 4+ messages in thread
From: Russ Cox @ 2003-08-17 14:00 UTC (permalink / raw)
  To: 9fans


>What I see (all in one drawterm session) is this. I 'New' a window and then:
>
>

"window" interacts with an instance of rio mounted on /mnt/wsys.
/dev/draw happens to be used by rio.  If you run drawterm but don't
start rio, "window" has no one to talk to.

Russ




^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2003-08-17 14:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2003-08-16 23:02 [9fans] drawterm's #i Skip Tavakkolian
2003-08-17  5:14 ` Russ Cox
2003-08-17  6:45   ` Skip Tavakkolian
2003-08-17 14:00     ` Russ Cox

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).