I have a class with a user-defined destructor. If the class was instantiated initially, and then SIGINT is issued (using CTRL+C in unix) while the program is running, will the destructor be called? What is the behaviour for SIGSTP (CTRL + Z in unix)?
|
|
No, by default, most signals cause an immediate, abnormal exit of your program. However, you can easily change the default behavior for most signals. This code shows how to make a signal exit your program normally, including calling all the usual destructors:
If you run this program and press control-C, you should see the word "destructor" printed. Be aware that your signal handler functions (got_signal) should rarely do any work, other than setting a flag and returning quietly, unless you really know what you are doing. Most signals are catchable as shown above, but not SIGKILL, you have no control over it because SIGKILL is a last-ditch method for killing a runaway process, and not SIGSTOP which allows a user to freeze a process cold. Note that you can catch SIGTSTP (control-Z) if desired, but you don't need to if your only interest in signals is destructor behavior, because eventually after a control-Z the process will be woken up, will continue running, and will exit normally with all the destructors in effect. |
|||||||
|
|
If you do not handle these signals yourself, then, no, the destructors are not called. However, the operating system will reclaim any resources your program used when it terminates. If you wish to handle signals yourself, then consider checking out the |
|||||
|
|
Let's try it:
And then:
So I'm afraid not, you'll have to catch it. As for |
|||
|
|
|
The C++ standard has no knowledge of signals. Signals are a POSIX concept implemented in operating systems like Linux or UNIX, and have nothing to do with C++. Any C++ code that even handles signals is non-portable. So naturally, if your program receives a signal from the OS it won't invoke any C++ destructors. You'll need to use a signal handler to handle the signal, and then return control to your program so that the object's destructor is invoked normally when it goes out of scope or is otherwise destroyed. |
|||||||||
|
