* pinfo.h (proc_pipe::*): Delete class.

* pinfo.cc (proc_pipe::*): Ditto.
This commit is contained in:
Christopher Faylor
2004-12-06 19:20:24 +00:00
parent 8c43a9f82e
commit a8dead4476
3 changed files with 5 additions and 48 deletions

View File

@@ -179,20 +179,6 @@ public:
void set_acl();
};
class proc_pipe
{
bool _closeem;
public:
HANDLE in;
HANDLE out;
void set (bool);
proc_pipe (bool closeem) {set (closeem);}
proc_pipe () : _closeem (false), in (NULL), out (NULL) {};
void close () {_closeem = true;}
~proc_pipe ();
int operator == (int x) {return (int) in == x;}
};
#define ISSTATE(p, f) (!!((p)->process_state & f))
#define NOTSTATE(p, f) (!((p)->process_state & f))