1
0
mirror of https://github.com/golang/go synced 2024-11-20 02:14:46 -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:
Alex Brainman 2011-04-08 10:27:47 +10:00
parent 35c880b1e2
commit d3cd0c0752

View File

@ -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 }