Skip to content

Commit b98f790

Browse files
committed
Remove existing hypervisor_handler thread and associated
Signed-off-by: Ludvig Liljenberg <4257730+ludfjig@users.noreply.github.com>
1 parent 8b38958 commit b98f790

File tree

8 files changed

+256
-1692
lines changed

8 files changed

+256
-1692
lines changed

src/hyperlight_host/src/func/call_ctx.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ use hyperlight_common::flatbuffer_wrappers::function_types::{
1919
};
2020
use tracing::{instrument, Span};
2121

22-
use super::guest_dispatch::call_function_on_guest;
2322
use crate::{MultiUseSandbox, Result};
2423
/// A context for calling guest functions.
2524
///
@@ -72,7 +71,8 @@ impl MultiUseGuestCallContext {
7271
// !Send (and !Sync), we also don't need to worry about
7372
// synchronization
7473

75-
call_function_on_guest(&mut self.sbox, func_name, func_ret_type, args)
74+
self.sbox
75+
.call_guest_function_by_name_no_reset(func_name, func_ret_type, args)
7676
}
7777

7878
/// Close out the context and get back the internally-stored

0 commit comments

Comments
 (0)