mirror of
https://github.com/golang/sys.git
synced 2026-02-08 11:46:04 +03:00
Make all our package sources use Go 1.17 gofmt format (adding //go:build lines). Not strictly necessary but will avoid spurious changes as files are edited. Part of //go:build change (#41184). See https://golang.org/design/draft-gobuild Change-Id: I01667f826428426a39c84717d02efa25fa44553c Reviewed-on: https://go-review.googlesource.com/c/sys/+/294490 TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Keith Randall <khr@golang.org> Reviewed-by: Josh Bleecher Snyder <josharian@gmail.com> Reviewed-by: Matt Layher <mdlayher@gmail.com> Trust: Josh Bleecher Snyder <josharian@gmail.com> Trust: Russ Cox <rsc@golang.org> Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com> Run-TryBot: Russ Cox <rsc@golang.org>
28 lines
757 B
Go
28 lines
757 B
Go
// Copyright 2018 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build aix && ppc
|
|
// +build aix,ppc
|
|
|
|
// Functions to access/create device major and minor numbers matching the
|
|
// encoding used by AIX.
|
|
|
|
package unix
|
|
|
|
// Major returns the major component of a Linux device number.
|
|
func Major(dev uint64) uint32 {
|
|
return uint32((dev >> 16) & 0xffff)
|
|
}
|
|
|
|
// Minor returns the minor component of a Linux device number.
|
|
func Minor(dev uint64) uint32 {
|
|
return uint32(dev & 0xffff)
|
|
}
|
|
|
|
// Mkdev returns a Linux device number generated from the given major and minor
|
|
// components.
|
|
func Mkdev(major, minor uint32) uint64 {
|
|
return uint64(((major) << 16) | (minor))
|
|
}
|