mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-24 13:48:56 +08:00
18 lines
262 B
Go
18 lines
262 B
Go
// +build freebsd
|
|
// +build amd64
|
|
|
|
package gopsutil
|
|
|
|
const (
|
|
UTNameSize = 16 /* see MAXLOGNAME in <sys/param.h> */
|
|
UTLineSize = 8
|
|
UTHostSize = 16
|
|
)
|
|
|
|
type utmp struct {
|
|
UtLine [UTLineSize]byte
|
|
UtName [UTNameSize]byte
|
|
UtHost [UTHostSize]byte
|
|
UtTime int32
|
|
}
|