Add an empty os.Process.Signal implementation

This fixes compile of tests in Go 1.18, due to its use in
`src/internal/testenv/testenv.go`.
Этот коммит содержится в:
Elliott Sales de Andrade 2022-02-05 19:18:38 -05:00 коммит произвёл Ron Evans
родитель db8603e378
коммит 5d4f795aec

Просмотреть файл

@ -55,3 +55,7 @@ func (p *Process) Wait() (*ProcessState, error) {
func (p *Process) Kill() error { func (p *Process) Kill() error {
return ErrNotImplemented return ErrNotImplemented
} }
func (p *Process) Signal(sig Signal) error {
return ErrNotImplemented
}