You can catch signals and conditions by using the Add an event breakpoint menu () on the Breakpoints tab or by using environment variables.
The following environment variables can be used to catch, catch but ignore, or not catch altogether:
Multiple values for a given variable should be separated by a comma.
set CODEWATCH_SIGNALS_CATCH=11
In this example, CODEWATCH_SIGNALS_CATCH specifies that the signal SIGSEGV(represented by the number 11) should be caught.
set CODEWATCH_CONDITIONS_CATCH=ERROR,ENDFILE
In this example, CODEWATCH_CONDITIONS_CATCH specifies that the conditions ERROR and ENDFILE should be caught.