ΒΆvoid LLVMInstallFatalErrorHandler(
    LLVMFatalErrorHandler Handler)

Description

Install a fatal error handler. By default, if LLVM detects a fatal error, it will call exit(1). This may not be appropriate in many contexts. For example, doing exit(1) will bypass many crash reporting/tracing system tools. This function allows you to install a callback that will be invoked prior to the call to exit(1).

Declared at: llvm/include/llvm-c/ErrorHandling.h:30

Parameters

LLVMFatalErrorHandler Handler