a new struct to track file handles for processes
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
a3042062d8
commit
2806f41841
|
@ -12,8 +12,11 @@ var readBufferSize int
|
|||
type File struct {
|
||||
Name string
|
||||
BufferSize int
|
||||
FbytesBuffer bytes.Buffer
|
||||
Buffer *bytes.Buffer
|
||||
Fbytes []byte
|
||||
TotalCount int
|
||||
Empty bool
|
||||
Dead bool
|
||||
|
||||
Fio io.ReadCloser // := process.StdoutPipe()
|
||||
Fbufio *bufio.Reader // := bufio.NewReader(pOUT)
|
||||
|
|
Loading…
Reference in New Issue