Path: utzoo!utgpu!news-server.csri.toronto.edu!rpi!zaphod.mps.ohio-state.edu!wuarchive!udel!mmdf From: Christoph van Wuellen Newsgroups: comp.os.minix Subject: Re: What's wrong with kermit? (ST minix 1.5) Message-ID: <49451@nigel.ee.udel.edu> Date: 1 Apr 91 13:51:40 GMT Sender: mmdf@ee.udel.edu Lines: 10 The ST shadowing mechanism runs into performance problems when a process does a fork() and keeps running parallel to its child -- the typical application is a terminal emulator. The stterm program uses the 'OS-9 approach', as I would call it: it forks off two children, which exec the reader and the writer. Kermit does it in the standard unix fashion, so it is slow on the ST. C.v.W.