blob: 8763181a32f37a419dfe6a530acf7a9e308c080d [file] [log] [blame]
Alexei Starovoitov4662a4e2018-03-28 12:05:39 -07001// SPDX-License-Identifier: GPL-2.0
2/* Copyright (c) 2018 Facebook */
3#include <uapi/linux/bpf.h>
Toke Høiland-Jørgensen7cf245a2020-01-20 14:06:49 +01004#include <bpf/bpf_helpers.h>
Alexei Starovoitov4662a4e2018-03-28 12:05:39 -07005
6SEC("raw_tracepoint/task_rename")
7int prog(struct bpf_raw_tracepoint_args *ctx)
8{
9 return 0;
10}
11
12SEC("raw_tracepoint/urandom_read")
13int prog2(struct bpf_raw_tracepoint_args *ctx)
14{
15 return 0;
16}
17char _license[] SEC("license") = "GPL";