libbpf-rs 0.26.2

libbpf-rs is a safe, idiomatic, and opinionated wrapper around libbpf-sys
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
// SPDX-License-Identifier: GPL-2.0

#include "vmlinux.h"
#include <bpf/bpf_helpers.h>

/* bpflint: disable=unstable-attach-point */
SEC("kprobe/bpf_fentry_test1")
int handle__kprobe(void *ctx)
{
    return 0;
}

char LICENSE[] SEC("license") = "GPL";