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: 1 addition & 1 deletion src/hyperlight_host/src/sandbox/initialized_multi_use.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ impl MultiUseSandbox {
/// Returns the length of the mapping
#[allow(dead_code)]
#[instrument(err(Debug), skip(self, _fp, _guest_base), parent = Span::current())]
pub(crate) fn map_file_cow(&mut self, _fp: &Path, _guest_base: u64) -> Result<u64> {
pub fn map_file_cow(&mut self, _fp: &Path, _guest_base: u64) -> Result<u64> {
#[cfg(windows)]
log_then_return!("mmap'ing a file into the guest is not yet supported on Windows");
#[cfg(unix)]
Expand Down
Loading