Commit 4a7cdc79 authored by Yasuhiro Matsumoto's avatar Yasuhiro Matsumoto Committed by Rob Pike

syscall: fix build. WUNTRACED isn't defined for win32.

For Windows, the options for syscall.Wait4() aren't used.
Then this will be dummy value like WNOHANG, WSTOPPED.

R=golang-dev, r
CC=golang-dev
https://golang.org/cl/4075041
parent 052ff456
......@@ -708,6 +708,7 @@ const (
PTRACE_TRACEME = 1 + iota
WNOHANG
WSTOPPED
WUNTRACED
SYS_CLOSE
SYS_WRITE
SYS_EXIT
......
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