emit license

This commit is contained in:
2025-08-30 22:33:58 +05:30
parent b8ef7cc945
commit b4a2f169ad
5 changed files with 47 additions and 21 deletions

View File

@ -1,8 +1,8 @@
from pythonbpf.decorators import tracepoint, license
from pythonbpf.decorators import tracepoint
@tracepoint("syscalls:sys_enter_execve")
def trace_execve(ctx) -> int:
print("execve called\n")
return 0
license("GPL")
LICENSE = "GPL"