fdWriteCloser represents a wrapped stdout Writer that preserves the original file descriptor
| 636 | |
| 637 | // fdWriteCloser represents a wrapped stdout Writer that preserves the original file descriptor |
| 638 | type fdWriteCloser struct { |
| 639 | io.WriteCloser |
| 640 | fd uintptr |
| 641 | } |
| 642 | |
| 643 | func (w *fdWriteCloser) Fd() uintptr { |
| 644 | return w.fd |
nothing calls this directly
no outgoing calls
no test coverage detected