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
The Rust runtime sets up a signal handler which enables it to produce a nicer message when a stack overflows, however this only works when the guard pages set up by the Rust standard library itself are hit. That is, for the main stack and for the stack of the threads created std::thread.
There may be value in stacker setting up a similar signal handler(s) for the guard pages it sets up by itself, but the functionality likely wants to be made optional (in order to reduce the cost of allocating/deallocating a stack region)
The text was updated successfully, but these errors were encountered:
The Rust runtime sets up a signal handler which enables it to produce a nicer message when a stack overflows, however this only works when the guard pages set up by the Rust standard library itself are hit. That is, for the main stack and for the stack of the threads created
std::thread
.There may be value in
stacker
setting up a similar signal handler(s) for the guard pages it sets up by itself, but the functionality likely wants to be made optional (in order to reduce the cost of allocating/deallocating a stack region)The text was updated successfully, but these errors were encountered: