We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
STRINGS
THREAD_LOCAL
ElfSectionFlags
1 parent 9579bca commit b70df61Copy full SHA for b70df61
1 file changed
multiboot2/src/elf_sections.rs
@@ -271,6 +271,15 @@ bitflags! {
271
272
/// The section contains executable machine instructions.
273
const EXECUTABLE = elf::abi::SHF_EXECINSTR as u64;
274
+
275
+ /// Identifies a section that consists of null-terminated character strings.
276
+ /// The size of each character is specified in the section header's `sh_entsize` field.
277
+ const STRINGS = elf::abi::SHF_STRINGS as u64;
278
279
+ /// This section holds thread-local storage. Each thread within a process has a distinct instance
280
+ /// of this data.
281
+ const THREAD_LOCAL = elf::abi::SHF_TLS as u64;
282
283
// plus environment-specific use at 0x0F000000
284
// plus processor-specific use at 0xF0000000
285
}
0 commit comments