kubernetes/vendor/github.com/cilium/ebpf/ptr_64.go
Odin Ugedal 5ba2a8da09
Pin dependency github.com/cilium/ebpf
Use same as opencontainers/runc
2020-01-24 13:13:44 +01:00

15 lines
256 B
Go

// +build !386,!amd64p32,!arm,!mipsle,!mips64p32le
// +build !armbe,!mips,!mips64p32
package ebpf
import (
"unsafe"
)
// ptr wraps an unsafe.Pointer to be 64bit to
// conform to the syscall specification.
type syscallPtr struct {
ptr unsafe.Pointer
}