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
C-unwind was added in Rust 1.71, and allows panicking/unwinding
/exceptions across foreign function interfaces.
Additionally, Rust decided to let handling of foreign unwinds be
implementation defined behavior (instead of undefined), so we can now
mark `throw` as safe, see rust-lang/rust#128321.
This has a cost in that we now have landing pads on every message send;
this is strictly the correct choice, though, so we will have to bear
with it.
Fixes#539.
0 commit comments