mirror of
https://github.com/shirou/gopsutil.git
synced 2025-04-26 13:48:59 +08:00
18 lines
272 B
Go
18 lines
272 B
Go
// +build freebsd
|
|
// +build amd64
|
|
|
|
package gopsutil
|
|
|
|
const (
|
|
UT_NAMESIZE = 16 /* see MAXLOGNAME in <sys/param.h> */
|
|
UT_LINESIZE = 8
|
|
UT_HOSTSIZE = 16
|
|
)
|
|
|
|
type utmp struct {
|
|
Ut_line [UT_LINESIZE]byte
|
|
Ut_name [UT_NAMESIZE]byte
|
|
Ut_host [UT_HOSTSIZE]byte
|
|
Ut_time int32
|
|
}
|