mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
18c7c67308
- pkg/useragent - pkg/units - pkg/ulimit - pkg/truncindex - pkg/timeoutconn - pkg/term - pkg/tarsum - pkg/tailfile - pkg/systemd - pkg/stringutils - pkg/stringid - pkg/streamformatter - pkg/sockets - pkg/signal - pkg/proxy - pkg/progressreader - pkg/pools - pkg/plugins - pkg/pidfile - pkg/parsers - pkg/parsers/filters - pkg/parsers/kernel - pkg/parsers/operatingsystem Signed-off-by: Vincent Demeester <vincent@sbr.pm>
19 lines
392 B
Go
19 lines
392 B
Go
package kernel
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
// Utsname represents the system name structure.
|
|
// It is passthgrouh for syscall.Utsname in order to make it portable with
|
|
// other platforms where it is not available.
|
|
type Utsname syscall.Utsname
|
|
|
|
func uname() (*syscall.Utsname, error) {
|
|
uts := &syscall.Utsname{}
|
|
|
|
if err := syscall.Uname(uts); err != nil {
|
|
return nil, err
|
|
}
|
|
return uts, nil
|
|
}
|