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
@nvu-arabesque sorry the description wasn't too accurate, ctrl-c sends an interrupt signal but the program is free to do what it wishes. Rust doesn't have a runtime so the signals are not handled automatically.
SIGINT is the signal sent when we press Ctrl+C. The default action is to terminate the process. However, some programs override this action and handle it differently.
Currently the users can't abort from a running lisbon routine with
SIGINT
. Use ctrlc to handle SIGINT.The text was updated successfully, but these errors were encountered: