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
Since hyperlight is a library the use of expect/panic/assert/unwrap especially in release builds is problematic since it use implies that we are happy to terminate the process, in most cases these usages should be turned into errors returned to the host program, the only cases where we should expect/panic/assert/unwrap are where we detect out of bounds memory access attempts or actions that would corrupt data.
The text was updated successfully, but these errors were encountered:
Since hyperlight is a library the use of
expect/panic/assert/unwrap
especially in release builds is problematic since it use implies that we are happy to terminate the process, in most cases these usages should be turned into errors returned to the host program, the only cases where we shouldexpect/panic/assert/unwrap
are where we detect out of bounds memory access attempts or actions that would corrupt data.The text was updated successfully, but these errors were encountered: