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.
1 parent c9bf37f commit cb563d7Copy full SHA for cb563d7
src/hyperlight_host/src/hypervisor/gdb/arch.rs
@@ -24,9 +24,9 @@ use crate::Result;
24
// Described in Table 6-1. Exceptions and Interrupts at Page 6-13 Vol. 1
25
// of Intel 64 and IA-32 Architectures Software Developer's Manual
26
/// Exception id for #DB
27
-const DB_EX_ID: u32 = 1;
+pub(crate) const DB_EX_ID: u32 = 1;
28
/// Exception id for #BP - triggered by the INT3 instruction
29
-const BP_EX_ID: u32 = 3;
+pub(crate) const BP_EX_ID: u32 = 3;
30
31
/// Software Breakpoint size in memory
32
pub(crate) const SW_BP_SIZE: usize = 1;
0 commit comments