Initialize PythonBPF project and toolchain

This commit is contained in:
2025-08-30 18:08:14 +05:30
commit d5557d3c01
10 changed files with 119 additions and 0 deletions

10
examples/execve.py Normal file
View File

@ -0,0 +1,10 @@
from pythonbpf import decorators
@decorators.tracepoint("syscalls:sys_enter_execve")
def trace_execve(ctx) -> int:
decorators.trace_printk("execve called\n")
return 0
@decorators.license("GPL")
def _():
pass