1 /*===-- llvm-c/ErrorHandling.h - Error Handling C Interface -------*- C -*-===*\
3 |* The LLVM Compiler Infrastructure *|
5 |* This file is distributed under the University of Illinois Open Source *|
6 |* License. See LICENSE.TXT for details. *|
8 |*===----------------------------------------------------------------------===*|
10 |* This file defines the C interface to LLVM's error handling mechanism. *|
12 \*===----------------------------------------------------------------------===*/
14 #ifndef LLVM_C_ERROR_HANDLING_H
15 #define LLVM_C_ERROR_HANDLING_H
21 typedef void (*LLVMFatalErrorHandler
)(const char *Reason
);
24 * Install a fatal error handler. By default, if LLVM detects a fatal error, it
25 * will call exit(1). This may not be appropriate in many contexts. For example,
26 * doing exit(1) will bypass many crash reporting/tracing system tools. This
27 * function allows you to install a callback that will be invoked prior to the
30 void LLVMInstallFatalErrorHandler(LLVMFatalErrorHandler Handler
);
33 * Reset the fatal error handler. This resets LLVM's fatal error handling
34 * behavior to the default.
36 void LLVMResetFatalErrorHandler(void);
39 * Enable LLVM's built-in stack trace code. This intercepts the OS's crash
40 * signals and prints which component of LLVM you were in at the time if the
43 void LLVMEnablePrettyStackTrace(void);