From: Robert Klemme Date: 2005-09-17T06:46:35+09:00 Subject: Re: sending EOF portably Ara.T.Howard wrote: > any way to send EOF down a pipe/io object in a portable fashion? i > want to signal EOF to another process w/o closing/reopen. There seems to be ETX, EOT, EM, FS... in ASCII but I dunno how portable that is. http://www.lookuptables.com/ If you control both processes you can use whatever convention you like. Other than that it'll be difficult. Btw, why do you want to do that? A named pipe where you want to disconnect a listener but keep the pipe is about the only reasonable scenario that I can think of at the moment. Kind regards robert