Skip to content

Commit 4ebf048

Browse files
committed
tweak commit to add placeholder string
1 parent b9ddecd commit 4ebf048

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/execve5.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,13 @@ def events() -> PerfEventArray:
2222
@bpf
2323
@section("tracepoint/syscalls/sys_enter_clone")
2424
def hello(ctx: c_void_p) -> c_int32:
25-
strobj = "Hi"
2625
dataobj = data_t()
2726
ts = ktime()
2827
process_id = pid()
28+
strobj = "hellohellohello"
2929
dataobj.pid = process_id
3030
dataobj.ts = ts
31-
print(f"clone called at {ts} by pid {process_id}, str is {strobj}")
31+
print(f"clone called at {ts} by pid {process_id}, comm {strobj}")
3232
events.output(dataobj)
3333
return c_int32(0)
3434

0 commit comments

Comments
 (0)