blob: 95a320df3ae5835706238b2c5f122ba953abf464 [file] [log] [blame]
Howard Hinnant5ec91832011-12-07 21:16:40 +00001//===------------------------- cxa_handlers.cpp ---------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//
9// This file implements the functionality associated with the terminate_handler,
10// unexpected_handler, and new_handler.
11//===----------------------------------------------------------------------===//
12
Howard Hinnant4ac72dd2012-03-19 16:20:34 +000013#ifndef _CXA_HANDLERS_H
14#define _CXA_HANDLERS_H
15
Howard Hinnant5ec91832011-12-07 21:16:40 +000016#include <exception>
17
18namespace std
19{
20
Howard Hinnanta9d8ec42012-01-24 18:26:29 +000021__attribute__((visibility("hidden"), noreturn))
Howard Hinnant5ec91832011-12-07 21:16:40 +000022void
23__unexpected(unexpected_handler func);
24
Howard Hinnanta9d8ec42012-01-24 18:26:29 +000025__attribute__((visibility("hidden"), noreturn))
Howard Hinnant5ec91832011-12-07 21:16:40 +000026void
27__terminate(terminate_handler func) _NOEXCEPT;
28
29} // std
Howard Hinnant4ac72dd2012-03-19 16:20:34 +000030
31extern "C"
32{
33
34extern void (*__cxa_terminate_handler)();
35extern void (*__cxa_unexpected_handler)();
36extern void (*__cxa_new_handler)();
37
38} // extern "C"
39
40#endif // _CXA_HANDLERS_H