1 /*===-- llvm-c/ErrorHandling.h - Error Handling C Interface -------*- C -*-===*\
3 |* Part of the LLVM Project, under the Apache License v2.0 with LLVM *|
5 |* See https://llvm.org/LICENSE.txt for license information. *|
6 |* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *|
8 |*===----------------------------------------------------------------------===*|
10 |* This file defines the C interface to LLVM's error handling mechanism. *|
12 \*===----------------------------------------------------------------------===*/
14 #ifndef LLVM_C_ERRORHANDLING_H
15 #define LLVM_C_ERRORHANDLING_H
17 #include "llvm-c/ExternC.h"
22 * @addtogroup LLVMCError
27 typedef void (*LLVMFatalErrorHandler
)(const char *Reason
);
30 * Install a fatal error handler. By default, if LLVM detects a fatal error, it
31 * will call exit(1). This may not be appropriate in many contexts. For example,
32 * doing exit(1) will bypass many crash reporting/tracing system tools. This
33 * function allows you to install a callback that will be invoked prior to the
36 void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler
);
39 * Reset the fatal error handler. This resets LLVM's fatal error handling
40 * behavior to the default.
42 void LLVMResetFatalErrorHandler(void);
45 * Enable LLVM's built-in stack trace code. This intercepts the OS's crash
46 * signals and prints which component of LLVM you were in at the time if the
49 void LLVMEnablePrettyStackTrace(void);