1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2020 Facebook */
6 #include <bpf/bpf_helpers.h>
11 SEC("raw_tp/sys_enter")
12 int raw_tp_prog(const void *ctx
)
18 SEC("tp_btf/sys_enter")
19 int tp_btf_prog(const void *ctx
)
25 char _license
[] SEC("license") = "GPL";