// SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2022 Google */ #include "vmlinux.h" #include bool prog1_called = false; bool prog2_called = false; SEC("raw_tp/sys_enter") int prog1(const void *ctx) { prog1_called = true; return 0; } SEC("raw_tp/sys_exit") int prog2(const void *ctx) { prog2_called = true; return 0; }