disable_handler

C compiler C++ compiler
Read syntax diagramSkip visual syntax diagramdisable_handler syntax
 
>>-#--pragma--disable_handler----------------------------------><
 

Description

Disables the handler most recently enabled by either the exception_handler or cancel_handler pragma.

This directive is only needed when a handler has to be explicitly disabled before the end of a function. This is done since all enabled handlers are implicitly disabled at the end of the function in which they are enabled.

Notes on Usage

This pragma can only occur at a C language statement boundary and inside a function definition. The compiler issues an error message if the #pragma disable_handler is specified when no handler is currently enabled.



[ Top of Page | Previous Page | Next Page | Contents | Index ]