diff options
Diffstat (limited to 'src/pkg/os/exec.go')
| -rw-r--r-- | src/pkg/os/exec.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pkg/os/exec.go b/src/pkg/os/exec.go index a94a2a8424..79d25b2dc0 100644 --- a/src/pkg/os/exec.go +++ b/src/pkg/os/exec.go @@ -57,8 +57,8 @@ func Exec(argv0 string, argv []string, envv []string) Error { // Waitmsg stores the information about an exited process as reported by Wait. type Waitmsg struct { - Pid int; // The process's id. - syscall.WaitStatus; // System-dependent status info. + Pid int; // The process's id. + syscall.WaitStatus; // System-dependent status info. Rusage *syscall.Rusage; // System-dependent resource usage info. } |
