1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
//! ELF definitions.
//!
//! For details, see [elf(5)] and [uapi/linux/elf.h].
//!
//! [elf(5)]: https://www.man7.org/linux/man-pages/man5/elf.5.html
//! [uapi/linux/elf.h]: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/tree/include/uapi/linux/elf.h?h=v6.19
/// An ELF note.
/// Note header in a `PT_NOTE` section.