containerd/vendor/github.com/cilium/ebpf
Shengjing Zhu 7e46676e7c Go mod vendor
Signed-off-by: Shengjing Zhu <zhsj@debian.org>
2020-12-01 01:41:25 +08:00
..
asm Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
internal Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
.gitignore Go mod vendor 2020-12-01 01:41:25 +08:00
abi.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
CODE_OF_CONDUCT.md Go mod vendor 2020-12-01 01:41:25 +08:00
collection.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
doc.go support cgroup2 2019-12-12 02:56:51 +09:00
elf_reader.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
go.mod Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
go.sum Go mod vendor 2020-12-01 01:41:25 +08:00
LICENSE support cgroup2 2019-12-12 02:56:51 +09:00
linker.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
map.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
marshalers.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
prog.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
readme.md Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
run-tests.sh Go mod vendor 2020-12-01 01:41:25 +08:00
syscalls.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
types_string.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00
types.go Update runc to v1.0.0-rc91 2020-07-04 14:46:03 -04:00

eBPF

eBPF is a pure Go library that provides utilities for loading, compiling, and debugging eBPF programs. It has minimal external dependencies and is intended to be used in long running processes.

ebpf/asm contains a basic assembler.

The library is maintained by Cloudflare and Cilium. Feel free to join the libbpf-go channel on Slack.

Current status

The package is production ready, but the API is explicitly unstable right now. Expect to update your code if you want to follow along.

Requirements

  • A version of Go that is supported by upstream
  • Linux 4.9, 4.19 or 5.4 (versions in-between should work, but are not tested)

Useful resources