| commit | 880cda557a8cc638667916eac28e185e686e5878 | [log] [tgz] |
|---|---|---|
| author | Rob Pike <r@golang.org> | Thu Feb 23 07:51:49 2012 +1100 |
| committer | Rob Pike <r@golang.org> | Thu Feb 23 07:51:49 2012 +1100 |
| tree | 7271a6be8caaf9a4d649342485bec0de1ecb0811 | |
| parent | bb4a490928aeb1b6d6cc50954da141b3cf0cacde [diff] [blame] |
os: make the system info a value not a pointer on unix fix a couple of other minor related details. R=golang-dev, rsc CC=golang-dev https://golang.org/cl/5690071
diff --git a/src/pkg/os/exec_unix.go b/src/pkg/os/exec_unix.go index e5905f0..8d000e9 100644 --- a/src/pkg/os/exec_unix.go +++ b/src/pkg/os/exec_unix.go
@@ -30,7 +30,7 @@ } ps = &ProcessState{ pid: pid1, - status: &status, + status: status, rusage: &rusage, } return ps, nil