Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions igvm_defs/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -349,6 +349,9 @@ pub const IGVM_VHT_RANGE_PLATFORM: core::ops::RangeInclusive<u32> = 0x1..=0x100;
pub const IGVM_VHT_RANGE_INIT: core::ops::RangeInclusive<u32> = 0x101..=0x200;
/// The range of header types for directive structures.
pub const IGVM_VHT_RANGE_DIRECTIVE: core::ops::RangeInclusive<u32> = 0x301..=0x400;
/// When set in an [`IgvmVariableHeaderType`], the header may be ignored by
/// loaders that do not recognize it.
pub const IGVM_VHT_OPTIONAL_BIT: u32 = 1 << 31;

/// The header describing each structure in the variable header section. Headers
/// are aligned to 8 byte boundaries.
Expand Down