revert changes to examples

This commit is contained in:
Pragyansh Chaturvedi
2025-09-07 13:54:31 +05:30
parent 166439ae14
commit acfb8b4424
2 changed files with 1 additions and 3 deletions

View File

@ -3,7 +3,7 @@
SEC("kprobe/sys_clone")
int hello(struct pt_regs *ctx) {
bpf_printk("Hello, World!");
bpf_printk("Hello, World!\n");
return 0;
}

View File

@ -2,8 +2,6 @@ from pythonbpf.decorators import bpf, section
# from pythonbpf.decorators import tracepoint, syscalls
from ctypes import c_void_p, c_int32
# @tracepoint(syscalls.sys_enter_execve)
@bpf
@section("kprobe/sys_clone")