From 43db836ea4fb19036a19f78e1f988f75a42b910c Mon Sep 17 00:00:00 2001 From: Bernhard Schommer Date: Tue, 17 Jan 2017 09:49:04 +0100 Subject: Added backtrace handler. If CompCert crashes because of an uncaught exception the exception is caught toplevel and the backtrace is printed plus an additional message to include the backtrace in a support request, if buildnr and tag are available. Bug 20681. --- cparser/Cerrors.mli | 3 +++ 1 file changed, 3 insertions(+) (limited to 'cparser/Cerrors.mli') diff --git a/cparser/Cerrors.mli b/cparser/Cerrors.mli index 8501cfa0..b2350db6 100644 --- a/cparser/Cerrors.mli +++ b/cparser/Cerrors.mli @@ -72,3 +72,6 @@ val warning_options : (Commandline.pattern * Commandline.action) list (** List of all options for diagnostics *) val raise_on_errors : unit -> unit + +val crash: exn -> unit +(** Report the backtrace of the last exception and exit *) -- cgit