1
0
mirror of https://github.com/shirou/gopsutil.git synced 2025-04-28 13:48:49 +08:00
shirou_gopsutil/host/host_freebsd_amd64.go

18 lines
258 B
Go
Raw Normal View History

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