diff options
Diffstat (limited to 'src/os/exec.go')
| -rw-r--r-- | src/os/exec.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/os/exec.go b/src/os/exec.go index 5aea3098b5..15e95b9172 100644 --- a/src/os/exec.go +++ b/src/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 { |
