src/Pure/System/command_line.ML
author desharna
Sat, 04 Jun 2022 18:32:30 +0200
changeset 75540 02719bd7b4e6
parent 71656 3e121f999120
child 78671 66e7a3131fe3
permissions -rw-r--r--
added lemma reflp_on_empty[simp] and totalp_on_empty[simp]

(*  Title:      Pure/System/command_line.ML
    Author:     Makarius

Support for Isabelle/ML command line tools.
*)

signature COMMAND_LINE =
sig
  val tool: (unit -> unit) -> unit
end;

structure Command_Line: COMMAND_LINE =
struct

fun tool body =
  Thread_Attributes.uninterruptible (fn restore_attributes => fn () =>
    let
      val rc =
        (restore_attributes body (); 0)
          handle exn => Exn.capture_exit 2 (fn () => (Runtime.exn_error_message exn; raise exn)) ();
    in exit rc end) ();

end;