* fhandler.h (fhandler_pipe::broken_pipe): Renamed from saweof.

(fhandler_pipe::set_eof): Reflect above change.
* pipe.cc (fhandler_pipe::fhandler_pipe): Ditto.
(fhandler_pipe::read): Ditto.
(fhandler_pipe::hiteof): Ditto.
This commit is contained in:
Christopher Faylor
2001-11-05 01:52:20 +00:00
parent 6e8b4dcdf1
commit e25e893d6b
3 changed files with 13 additions and 5 deletions

View File

@ -391,7 +391,7 @@ class fhandler_socket: public fhandler_base
class fhandler_pipe: public fhandler_base
{
HANDLE guard;
bool saweof;
bool broken_pipe;
HANDLE writepipe_exists;
DWORD orig_pid;
unsigned id;
@ -408,7 +408,7 @@ class fhandler_pipe: public fhandler_base
int dup (fhandler_base *child);
void fixup_after_fork (HANDLE);
bool hit_eof ();
void set_eof () {saweof = true;}
void set_eof () {broken_pipe = true;}
friend int make_pipe (int fildes[2], unsigned int psize, int mode);
HANDLE get_guard () const {return guard;}
};