| 112 | } |
| 113 | |
| 114 | type windowsProcess struct { |
| 115 | // cmdDone protects access to cmdErr: anything reading cmdErr should read from cmdDone first. |
| 116 | cmdDone chan any |
| 117 | cmdErr error |
| 118 | proc *os.Process |
| 119 | pw *ptyWindows |
| 120 | } |
| 121 | |
| 122 | // Name returns the TTY name on Windows. |
| 123 | // |
nothing calls this directly
no outgoing calls
no test coverage detected