fdWriter represents a wrapped stdout Writer that preserves the original file descriptor
| 626 | |
| 627 | // fdWriter represents a wrapped stdout Writer that preserves the original file descriptor |
| 628 | type fdWriter struct { |
| 629 | io.Writer |
| 630 | fd uintptr |
| 631 | } |
| 632 | |
| 633 | func (w *fdWriter) Fd() uintptr { |
| 634 | return w.fd |
nothing calls this directly
no outgoing calls
no test coverage detected