diff options
| author | Thomas Sibut-Pinote | 2015-06-23 14:49:01 +0200 |
|---|---|---|
| committer | Pierre-Marie Pédrot | 2015-06-25 14:30:02 +0200 |
| commit | 3d33b59d725760bee14668c744b057a75440012e (patch) | |
| tree | d3e53b9406204a29845e2d0cc22c0ee2a40948bb /lib/errors.ml | |
| parent | 42893bd092c4a63174c97995b4fb561daf4de273 (diff) | |
Moved fatal_error from Coqtop to Errors and corrected dependencies accordingly.
This allows fatal_error to be used for printing anomalies at loading time.
Diffstat (limited to 'lib/errors.ml')
| -rw-r--r-- | lib/errors.ml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lib/errors.ml b/lib/errors.ml index c60442654a..c1d224dfcd 100644 --- a/lib/errors.ml +++ b/lib/errors.ml @@ -129,3 +129,13 @@ let handled e = let bottom _ = raise Bottom in try let _ = print_gen bottom !handle_stack e in true with Bottom -> false + +(** Prints info which is either an error or + an anomaly and then exits with the appropriate + error code *) + +let fatal_error info anomaly = + let msg = info ++ fnl () in + pp_with ~pp_tag:Ppstyle.pp_tag !Pp_control.err_ft msg; + flush_all (); + exit (if anomaly then 129 else 1) |
