Explicit program mask manipulations

Programs created with the C/370™ V2 compiler and library that explicitly manipulated the program mask might require source changes.

Changes are required if you have one of the following types of programs:

These changes also apply in a System Programming C environment, and to Customer Information Control System (CICS®) programs in the handling and management of the PSW mask.

Figure 1. Statements that ignore SIGFPE exception and restore default exception handling
  signal(SIGFPE, SIG_IGN);   /* ignore exceptions */
    ...
    callit():                  /* in called routine */
    ...
    signal(SIGFPE, SIG_DFL);   /* restore default handling */