package MlFront_Exec

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Source file BuildExceptions.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
exception
  EngineShutdown of {
    trace : MlFront_Thunk.BuildWriters.Standard.backtrace_item list;
        (** The backtrace, which is a curated set of locations in the call stack
            and monadic [bind] points. The first item in the trace is the
            closest to the process's ["int main()"] while the last item is the
            closest to the innermost failure point. *)
    exitcode_posix : int;
    exitcode_windows : int;
  }
(** Lifted from [MockShutdown] in
    ["tests/MlFront_Thunk/alacarte_xtraces_test.ml"], and renamed to
    [EngineShutdown]. *)