Closed gondiaz closed 2 years ago
A nexus process in interactive mode is killed by an interrupt (Ctrl-C). Nevertheless memory is not explicitly deallocated, leaving a corrupt output file. This PR solves this issue by using a signal.
signal
Use the exit command instead of ctrl-C. That way the application closes correctly, generating a valid output file.
exit
Great, I wasn't aware of this command..
A nexus process in interactive mode is killed by an interrupt (Ctrl-C). Nevertheless memory is not explicitly deallocated, leaving a corrupt output file. This PR solves this issue by using a
signal
.