fdWriteCloser represents a wrapped stdout Writer that preserves the original file descriptor
| 600 | |
| 601 | // fdWriteCloser represents a wrapped stdout Writer that preserves the original file descriptor |
| 602 | type fdWriteCloser struct { |
| 603 | io.WriteCloser |
| 604 | fd uintptr |
| 605 | } |
| 606 | |
| 607 | func (w *fdWriteCloser) Fd() uintptr { |
| 608 | return w.fd |
nothing calls this directly
no outgoing calls
no test coverage detected