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