mirror of
https://github.com/golang/go
synced 2024-11-20 00:44:45 -07:00
syscall: fix Windows Signalled
Thanks to fhs. R=golang-dev, r2 CC=ality, fhs, golang-dev https://golang.org/cl/4375044
This commit is contained in:
parent
35c880b1e2
commit
d3cd0c0752
@ -685,7 +685,7 @@ func (w WaitStatus) Continued() bool { return false }
|
||||
|
||||
func (w WaitStatus) StopSignal() int { return -1 }
|
||||
|
||||
func (w WaitStatus) Signaled() bool { return true }
|
||||
func (w WaitStatus) Signaled() bool { return false }
|
||||
|
||||
func (w WaitStatus) TrapCause() int { return -1 }
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user