Skip to content

Latest commit

 

History

History
72 lines (65 loc) · 1.54 KB

File metadata and controls

72 lines (65 loc) · 1.54 KB
title _abnormal_termination | Microsoft Docs
ms.custom
ms.date 11/04/2016
ms.reviewer
ms.suite
ms.technology
cpp-standard-libraries
ms.tgt_pltfrm
ms.topic article
apiname
_abnormal_termination
apilocation
msvcr110.dll
msvcr110_clr0400.dll
msvcr90.dll
msvcr120.dll
msvcrt.dll
msvcr80.dll
msvcr100.dll
apitype DLLExport
f1_keywords
_abnormal_termination
dev_langs
C++
helpviewer_keywords
_abnormal_termination
ms.assetid 952970a4-9586-4c3d-807a-db729448c91c
caps.latest.revision 2
author corob-msft
ms.author corob
manager ghogen
translation.priority.ht
de-de
es-es
fr-fr
it-it
ja-jp
ko-kr
ru-ru
zh-cn
zh-tw
translation.priority.mt
cs-cz
pl-pl
pt-br
tr-tr

_abnormal_termination

Indicates whether the __finally block of a try-finally statement is entered while the system is executing an internal list of termination handlers.

Syntax

int   _abnormal_termination(  
   );  

Return Value

true if the system is unwinding the stack; otherwise, false.

Remarks

This is an internal function used to manage unwinding exceptions, and is not intended to be called from user code.

Requirements

Routine Required header
_abnormal_termination excpt.h

See Also

try-finally Statement