diff options
Diffstat (limited to 'libgo/go/os/doc.go')
-rw-r--r-- | libgo/go/os/doc.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libgo/go/os/doc.go b/libgo/go/os/doc.go index c469e58..2cc1753 100644 --- a/libgo/go/os/doc.go +++ b/libgo/go/os/doc.go @@ -79,6 +79,8 @@ func (p *ProcessState) Sys() interface{} { // SysUsage returns system-dependent resource usage information about // the exited process. Convert it to the appropriate underlying // type, such as *syscall.Rusage on Unix, to access its contents. +// (On Unix, *syscall.Rusage matches struct rusage as defined in the +// getrusage(2) manual page.) func (p *ProcessState) SysUsage() interface{} { return p.sysUsage() } |