Gitiles
Code Review
Sign In
192.168.1.100
/
T108
/
e958203796650e3959a43708d67534bf36f4c83b
/
.
/
marvell
/
linux
/
tools
/
perf
/
examples
/
bpf
/
hello.c
blob: cf3c2fdc7f79c7dcc37fb3848ed4c1e55d0673c9 [
file
] [
log
] [
blame
]
b.liu
e958203
2025-04-17 19:18:16 +0800
[
diff
] [
blame^
]
1
#include
<stdio.h>
2
3
int
syscall_enter
(
openat
)(
void
*
args
)
4
{
5
puts
(
"Hello, world\n"
);
6
return
0
;
7
}
8
9
license
(
GPL
);