mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
4f0d95fa6e
Signed-off-by: Daniel Nephin <dnephin@docker.com>
17 lines
442 B
Go
17 lines
442 B
Go
package kernel // import "github.com/docker/docker/pkg/parsers/kernel"
|
|
|
|
import "golang.org/x/sys/unix"
|
|
|
|
// Utsname represents the system name structure.
|
|
// It is passthrough for unix.Utsname in order to make it portable with
|
|
// other platforms where it is not available.
|
|
type Utsname unix.Utsname
|
|
|
|
func uname() (*unix.Utsname, error) {
|
|
uts := &unix.Utsname{}
|
|
|
|
if err := unix.Uname(uts); err != nil {
|
|
return nil, err
|
|
}
|
|
return uts, nil
|
|
}
|