Does the signal() function overwrite other signal calls a process might have set up? I.e. if a SIGINT handler has been setup by a process, and a DLL calls signal(SIGINT,xxx) to handle its own termination code, does the original SIGINT handler get disabled?
|
The
The new handler will be called instead of the old one. If you want to chain them, you need to do something like:
If interrupts were being ignored, this keeps them ignored. If interrupts were being handled by a user-defined interrupt handler, then this calls your signal handling code and the original signal handling code. Note that the advice from Christian.K is also relevant and valid. The description above assumes you decide to ignore that advice. |
|||
|
|
|
This is not a "literal" answer to your question, but a recommendation: You shouldn't do this in a DLL. It is unexpected and often annoying for the application that uses the DLL. A DLL should (normally) by "passive" and only provide functions for the application to call. So rather provide a public function from your DLL that applications are required to call e.g. |
|||||||
|
SIGINT, msdn.microsoft.com/en-us/library/xdkz3x12(VS.71).aspx – Hasturkun May 22 '12 at 12:09signal()is required by Standard C (C89), MSVC must support it. The semantics may be limited, but it must be supported. – Jonathan Leffler May 22 '12 at 12:23