Commit d3cd0c07 authored by Alex Brainman's avatar Alex Brainman

syscall: fix Windows Signalled

Thanks to fhs.

R=golang-dev, r2
CC=ality, fhs, golang-dev
https://golang.org/cl/4375044
parent 35c880b1
...@@ -685,7 +685,7 @@ func (w WaitStatus) Continued() bool { return false } ...@@ -685,7 +685,7 @@ func (w WaitStatus) Continued() bool { return false }
func (w WaitStatus) StopSignal() int { return -1 } 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 } func (w WaitStatus) TrapCause() int { return -1 }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment