summaryrefslogtreecommitdiff
path: root/internal/c/ioriotng.bpf.c
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2025-03-07 21:26:52 +0200
committerPaul Buetow <paul@buetow.org>2025-03-07 21:26:52 +0200
commit4460a68aa299ad6b63ffbbbb23585b93fad9feee (patch)
tree72b585097db224d319e792b51bdf313401fe891d /internal/c/ioriotng.bpf.c
parent2b91942467052dfb389d9209fc96e6bb52fa2e3f (diff)
add pprof option and rename ioriotng to ior
Diffstat (limited to 'internal/c/ioriotng.bpf.c')
-rw-r--r--internal/c/ioriotng.bpf.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/internal/c/ioriotng.bpf.c b/internal/c/ioriotng.bpf.c
deleted file mode 100644
index 7c41551..0000000
--- a/internal/c/ioriotng.bpf.c
+++ /dev/null
@@ -1,20 +0,0 @@
-//+build ignore
-
-#include "vmlinux.h"
-#include <bpf/bpf_helpers.h>
-#include "types.h"
-#include "maps.h"
-#include "flags.h"
-
-/**
- * Including .c files, as linking several .o files into one single .o file doesn't work
- * with shared BPF state such as ring buffers, maps and globals so well. Other BPF projects
- * come along with one huuuuughe .c file with all the BPF code in it. I am rather
- * splitting the code up into several smaller files.
- */
-#include "filter.c"
-
-// Auto-generated tracepoints.
-#include "generated/tracepoints.c"
-
-char LICENSE[] SEC("license") = "Dual BSD/GPL";