fdReader represents a wrapped stdin ReadCloser that preserves the original file descriptor
| 610 | |
| 611 | // fdReader represents a wrapped stdin ReadCloser that preserves the original file descriptor |
| 612 | type fdReader struct { |
| 613 | io.ReadCloser |
| 614 | fd uintptr |
| 615 | } |
| 616 | |
| 617 | func (r *fdReader) Fd() uintptr { |
| 618 | return r.fd |
nothing calls this directly
no outgoing calls
no test coverage detected