shirou_gopsutil/host/host_freebsd_amd64.go

18 lines
262 B
Go
Raw Normal View History

// +build freebsd
// +build amd64
package gopsutil
const (
2014-08-16 02:05:26 +08:00
UTNameSize = 16 /* see MAXLOGNAME in <sys/param.h> */
UTLineSize = 8
UTHostSize = 16
)
type utmp struct {
2014-08-16 02:05:26 +08:00
UtLine [UTLineSize]byte
UtName [UTNameSize]byte
UtHost [UTHostSize]byte
2014-04-30 15:16:07 +08:00
UtTime int32
}