Pinner is an interface implemented by all eBPF objects that support pinning to a bpf virtual filesystem.
| 12 | // Pinner is an interface implemented by all eBPF objects that support pinning |
| 13 | // to a bpf virtual filesystem. |
| 14 | type Pinner interface { |
| 15 | io.Closer |
| 16 | Pin(string) error |
| 17 | } |
| 18 | |
| 19 | // Load retrieves a pinned object from a bpf virtual filesystem. It returns one |
| 20 | // of [ebpf.Map], [ebpf.Program], or [link.Link]. |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…