Prevents process control from returning to the debugger when the given signal or ON-unit is generated. Also turns off notification for a specified ON-unit.
NCATCH signal
or
NCATCH {ON-unit}
where:
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 no longer 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.
This example uses NCATCH to stop catching an ENDFILE ON-unit.
CodeWatch> NCATCH ENDFILE Changing ENDFILE to no longer be caught.
Description
The NCATCH command prevents process control from returning to the debugger when the given signal or ON-unit is generated. The child (user) process continues without interruption, as if the given signal had been generated. This implies that user-defined handlers are executed.