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 c685371 commit 1e4c5a4Copy full SHA for 1e4c5a4
src/hyperlight_guest/src/guest_function_call.rs
@@ -97,7 +97,7 @@ fn internal_dispatch_function() -> Result<()> {
97
// This is implemented as a separate function to make sure that epilogue in the internal_dispatch_function is called before the halt()
98
// which if it were included in the internal_dispatch_function cause the epilogue to not be called because the halt() would not return
99
// when running in the hypervisor.
100
-pub(crate) extern "win64" fn dispatch_function() {
+pub(crate) extern "C" fn dispatch_function() {
101
let _ = internal_dispatch_function();
102
halt();
103
}
0 commit comments