1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2020 Facebook */
4 #include <bpf/bpf_helpers.h>
6 char _license[] SEC("license") = "GPL";
9 int dump_task(struct bpf_iter__task *ctx)
11 struct seq_file *seq = ctx->meta->seq;
12 struct task_struct *task = ctx->task;
16 bpf_seq_write(seq, &tgid, sizeof(tgid));