github.com/cilium/ebpf@v0.16.0/internal/sys/ptr_32_le.go (about)

     1  //go:build 386 || amd64p32 || arm || mipsle || mips64p32le
     2  
     3  package sys
     4  
     5  import (
     6  	"unsafe"
     7  )
     8  
     9  // Pointer wraps an unsafe.Pointer to be 64bit to
    10  // conform to the syscall specification.
    11  type Pointer struct {
    12  	ptr unsafe.Pointer
    13  	pad uint32
    14  }