You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// In the happy path we do not need to clear io-buffers from the host because:
427
+
// - the serialized guest function call is zeroed out by the guest during deserialization, see call to `try_pop_shared_input_data_into::<FunctionCall>()`
428
+
// - the serialized guest function result is zeroed out by us (the host) during deserialization, see `get_guest_function_call_result`
429
+
// - any serialized host function call are zeroed out by us (the host) during deserialization, see `get_host_function_call`
430
+
// - any serialized host function result is zeroed out by the guest during deserialization, see `get_host_return_value`
0 commit comments