Path: utzoo!attcan!uunet!clyde.concordia.ca!mcgill-vision!snorkelwacker!tut.cis.ohio-state.edu!cs.utexas.edu!wuarchive!zaphod.mps.ohio-state.edu!rpi!sci.ccny.cuny.edu!phri!cmcl2!kramden.acf.nyu.edu!brnstnd From: brnstnd@kramden.acf.nyu.edu (Dan Bernstein) Newsgroups: comp.unix.questions Subject: Re: screen program information Message-ID: <7598:Sep1407:49:4190@kramden.acf.nyu.edu> Date: 14 Sep 90 07:49:41 GMT References: <24491@adm.BRL.MIL> Organization: IR Lines: 14 In article <24491@adm.BRL.MIL> Chauhan@system-m.phx.bull.com (Ardaman Chauhan (TDC)) writes: > I downloaded the screen program from the net a while back and > found it very useful. I have a question about the detach/attach feature > of the program by which you can detach a process and after wards > reattach to the same process from some other terminal/login. It sets up blocking IPC files, either named pipes or bound UNIX-domain sockets. All communication goes through the files. Reconnecting is just a matter of reopening the files. (Of course, this adds an unnecessary layer of communication. It's more efficient to pass file descriptors back and forth, like pty does.) ---Dan