(sig os.Signal)
| 267 | } |
| 268 | |
| 269 | func (p *windowsProcess) Signal(sig os.Signal) error { |
| 270 | // Windows doesn't support signals. |
| 271 | return p.Kill() |
| 272 | } |
| 273 | |
| 274 | // killOnContext waits for the context to be done and kills the process, unless it exits on its own first. |
| 275 | func (p *windowsProcess) killOnContext(ctx context.Context) { |