mirror of
https://github.com/varun-r-mallya/Python-BPF.git
synced 2025-12-31 21:06:25 +00:00
8 lines
182 B
Python
8 lines
182 B
Python
from pythonbpf.decorators import tracepoint, license
|
|
|
|
@tracepoint("syscalls:sys_enter_execve")
|
|
def trace_execve(ctx) -> int:
|
|
print("execve called\n")
|
|
return 0
|
|
|
|
license("GPL") |