Fix userspace calling in sys_sync

This commit is contained in:
Pragyansh Chaturvedi
2025-10-20 15:10:12 +05:30
parent 3273620447
commit 174095973b

View File

@ -15,6 +15,9 @@ def LICENSE() -> str:
return "GPL"
BPF().load_and_attach()
# Compile and load
b = BPF()
b.load()
b.attach_all()
print("Tracing sys_sync()... Ctrl-C to end.")
trace_pipe()