Skip to content
Merged
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
2 changes: 2 additions & 0 deletions src/hyperlight_host/src/sandbox/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,11 +175,13 @@ impl SandboxConfiguration {
}

/// Sets the interrupt retry delay
#[cfg(target_os = "linux")]
pub fn set_interrupt_retry_delay(&mut self, delay: Duration) {
self.interrupt_retry_delay = delay;
}

/// Get the delay between retries for interrupts
#[cfg(target_os = "linux")]
pub fn get_interrupt_retry_delay(&self) -> Duration {
self.interrupt_retry_delay
}
Expand Down
Loading