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 2289795 commit e0102f4Copy full SHA for e0102f4
src/hyperlight_host/src/hypervisor/hypervisor_handler.rs
@@ -280,11 +280,7 @@ impl HypervisorHandler {
280
self.execution_variables.run_cancelled.store(false);
281
282
let to_handler_rx = self.communication_channels.to_handler_rx.clone();
283
- #[cfg(target_os = "windows")]
284
- let execution_variables = self.execution_variables.clone();
285
- #[cfg(target_os = "linux")]
286
let mut execution_variables = self.execution_variables.clone();
287
- // ^^^ this needs to be mut on linux to set_thread_id
288
let from_handler_tx = self.communication_channels.from_handler_tx.clone();
289
let mut hv_handler_clone = self.clone();
290
0 commit comments