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.)
()
| 168 | // (On Unix, *syscall.Rusage matches struct rusage as defined in the |
| 169 | // getrusage(2) manual page.) |
| 170 | func (p *ProcessState) SysUsage() interface{} { |
| 171 | return p.sysUsage() |
| 172 | } |
no test coverage detected