github.com/chipaca/snappy@v0.0.0-20210104084008-1f06296fe8ad/osutil/udev/netlink/rawsockstop_other.go (about)

     1  // +build !arm64
     2  // don't remove the newline between the above statement and the package statement
     3  // or else the build constraint will be ignored and assumed to be part of the package comment!
     4  
     5  package netlink
     6  
     7  import "syscall"
     8  
     9  // once we use something other than go1.10 we can move this back into
    10  // rawsocketstop.go and remove rawsocketstop_arm64.go, see
    11  // rawsocketstop_arm64.go for details
    12  var stopperSelectTimeout = func() *syscall.Timeval {
    13  	return nil
    14  }