In the following example, the process control will not return from the child process to the debugger when a SIGALRM is generated.
CodeWatch> NCATCH SIGALRM Changing SIGALRM to now not be caught.
As a result, Ncatch allows the child process to continue uninterrupted when a SIGALRM is generated. If the user process has its own signal handler for a SIGALRM, that signal handler will be executed.
Description
The NCATCH command prevents process control from returning to the debugger when the given signal is generated. The child (user) process continues without interruption, as if the given signal had been generated. This implies that user-defined handlers will be executed.