mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-03 02:27:48 +00:00
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`.
This commit is contained in:
committed by
Ron Evans
parent
db8603e378
commit
5d4f795aec
@@ -55,3 +55,7 @@ func (p *Process) Wait() (*ProcessState, error) {
|
||||
func (p *Process) Kill() error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
func (p *Process) Signal(sig Signal) error {
|
||||
return ErrNotImplemented
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user