mirror of https://github.com/shirou/gopsutil
fix(net,linux): move IsLittleEndian to internal
parent
e4e6ed2efa
commit
f11e3ba120
@ -0,0 +1,10 @@
|
|||||||
|
package common
|
||||||
|
|
||||||
|
import "unsafe"
|
||||||
|
|
||||||
|
// IsLittleEndian checks if the current platform uses little-endian.
|
||||||
|
// copied from https://github.com/ntrrg/ntgo/blob/v0.8.0/runtime/infrastructure.go#L16 (MIT License)
|
||||||
|
func IsLittleEndian() bool {
|
||||||
|
var x int16 = 0x0011
|
||||||
|
return *(*byte)(unsafe.Pointer(&x)) == 0x11
|
||||||
|
}
|
Loading…
Reference in New Issue