diff options
Diffstat (limited to 'libgo/go/os/exec.go')
-rw-r--r-- | libgo/go/os/exec.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/os/exec.go b/libgo/go/os/exec.go index 5aea3098b54..15e95b91722 100644 --- a/libgo/go/os/exec.go +++ b/libgo/go/os/exec.go @@ -13,8 +13,8 @@ import ( // Process stores the information about a process created by StartProcess. type Process struct { Pid int - handle uintptr - isdone uint32 // process has been successfully waited on, non zero if true + handle uintptr // handle is accessed atomically on Windows + isdone uint32 // process has been successfully waited on, non zero if true } func newProcess(pid int, handle uintptr) *Process { |