| 99 | } |
| 100 | |
| 101 | type ptyWindows struct { |
| 102 | opts ptyOptions |
| 103 | console windows.Handle |
| 104 | |
| 105 | outputWrite *os.File |
| 106 | outputRead *os.File |
| 107 | inputWrite *os.File |
| 108 | inputRead *os.File |
| 109 | |
| 110 | closeMutex sync.Mutex |
| 111 | closed bool |
| 112 | } |
| 113 | |
| 114 | type windowsProcess struct { |
| 115 | // cmdDone protects access to cmdErr: anything reading cmdErr should read from cmdDone first. |
nothing calls this directly
no outgoing calls
no test coverage detected