hc
2023-11-22 983d7f83616922a6439b4352d1b3af488ee27f95
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2017 Facebook
 
#include <linux/bpf.h>
#include "bpf_helpers.h"
 
/* taken from /sys/kernel/debug/tracing/events/sched/sched_switch/format */
struct sched_switch_args {
   unsigned long long pad;
   char prev_comm[16];
   int prev_pid;
   int prev_prio;
   long long prev_state;
   char next_comm[16];
   int next_pid;
   int next_prio;
};
 
SEC("tracepoint/sched/sched_switch")
int oncpu(struct sched_switch_args *ctx)
{
   return 0;
}
 
char _license[] SEC("license") = "GPL";
__u32 _version SEC("version") = 1; /* ignored by tracepoints, required by libbpf.a */