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
std::process::abort might fail to terminate the program if the signal is caught and the handler longjmps away. While longjmp is a poorly supported feature in Rust, it is nevertheless something that is valid to do.
The text was updated successfully, but these errors were encountered:
Would switching back to exit be sufficient to resolve this? If I'm reading manuals properly, attempting to longjmp from a place that can interfere with exit is undefined.
std::process::abort
might fail to terminate the program if the signal is caught and the handlerlongjmp
s away. Whilelongjmp
is a poorly supported feature in Rust, it is nevertheless something that is valid to do.The text was updated successfully, but these errors were encountered: