mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-02 07:20:00 +00:00
22 lines
377 B
Go
22 lines
377 B
Go
|
// +build darwin freebsd openbsd dragonfly netbsd
|
||
|
|
||
|
package memory
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
func sysctlUint64(name string) (uint64, error) {
|
||
|
s, err := syscall.Sysctl(name)
|
||
|
if err != nil {
|
||
|
return 0, err
|
||
|
}
|
||
|
// hack because the string conversion above drops a \0
|
||
|
b := []byte(s)
|
||
|
if len(b) < 8 {
|
||
|
b = append(b, 0)
|
||
|
}
|
||
|
return *(*uint64)(unsafe.Pointer(&b[0])), nil
|
||
|
}
|