github.com/isyscore/isc-gobase@v1.5.3-0.20231218061332-cbc7451899e9/system/host/host_darwin_arm64.go (about)

     1  //go:build darwin && arm64
     2  
     3  package host
     4  
     5  type Utmpx struct {
     6  	User [256]int8
     7  	Id   [4]int8
     8  	Line [32]int8
     9  	Pid  int32
    10  	Type int16
    11  	Tv   Timeval
    12  	Host [256]int8
    13  	Pad  [16]uint32
    14  }
    15  type Timeval struct {
    16  	Sec       int64
    17  	Usec      int32
    18  	Pad_cgo_0 [4]byte
    19  }