github.com/cilium/ebpf@v0.15.1-0.20240517100537-8079b37aa138/internal/sys/ptr_32_be.go (about) 1 //go:build armbe || mips || mips64p32 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 pad uint32 13 ptr unsafe.Pointer 14 }