We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 067c0da commit 7a81514Copy full SHA for 7a81514
1 file changed
examples/sched_ext/sched_ext.c
@@ -6,14 +6,14 @@
6
char __license[] SEC("license") = "Dual MIT/GPL";
7
8
struct sched_ext_ops {
9
- s32 (*init)();
10
- u64 flags;
11
- u32 timeout_ms;
12
- char name[128];
+ s32 (*init)();
+ u64 flags;
+ u32 timeout_ms;
+ char name[128];
13
};
14
15
SEC(".struct_ops.link")
16
struct sched_ext_ops minimal_sched = {
17
- .name = "minimal",
18
- .timeout_ms = 5000,
+ .name = "minimal",
+ .timeout_ms = 5000,
19
0 commit comments