Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!gatech!hubcap!ncrcae!ncr-sd!hp-sdd!ucsdhub!jack!man!nu3b2!rwhite From: rwhite@nu3b2.UUCP (Robert C. White Jr.) Newsgroups: comp.unix.questions Subject: Re: pty's and crt windows Message-ID: <678@nu3b2.UUCP> Date: Tue, 16-Jun-87 02:33:43 EDT Article-I.D.: nu3b2.678 Posted: Tue Jun 16 02:33:43 1987 Date-Received: Sun, 21-Jun-87 06:34:15 EDT References: <355@micropen> Organization: National University, San Diego Lines: 25 Summary: Curses Rendivous? In article <355@micropen>, dave@micropen (David F. Carlson) writes: > I am running system V r2 and need to have several processes update > a single terminal screen. I know Pike's pty model (in user code) > is problably the way to go. I know the PD wm *might* do some things > right. What other programs are available to do this sort of tty > multiplexing? Might I seggust a curses terminal driver and a somple rondivous? Juts share a block of memory or use message mode to salve a single curses program/window/screen. If you get creative the sme rondivous could be used on multiple terminals from multiple trees. define functions to 1) position cursor 2) write text/attributes 3) field erase 4) trigger screen updating no matter how inefficent 1,2 and 3 are, 4 is the only one doing any work and curses will optomize that for you. Steal the input yourself and volia! Robert. (-: just a thought 8-)