fdReader represents a wrapped stdin ReadCloser that preserves the original file descriptor
| 646 | |
| 647 | // fdReader represents a wrapped stdin ReadCloser that preserves the original file descriptor |
| 648 | type fdReader struct { |
| 649 | io.ReadCloser |
| 650 | fd uintptr |
| 651 | } |
| 652 | |
| 653 | func (r *fdReader) Fd() uintptr { |
| 654 | return r.fd |
nothing calls this directly
no outgoing calls
no test coverage detected