src/Pure/System/command_line.ML
author wenzelm
Sat, 20 Oct 2012 15:46:48 +0200
changeset 49954 44658062d822
parent 48731 a45ba78abcc1
child 51312 0ce544fbb509
permissions -rw-r--r--
more explicit auxiliary classes to avoid warning "reflective access of structural type member method" of scala-2.10.0-RC1;

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

Support for Isabelle/ML command line tools.
*)

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

structure Command_Line: COMMAND_LINE =
struct

fun tool body =
  uninterruptible (fn restore_attributes => fn () =>
    let val rc =
      restore_attributes body () handle exn =>
        (Output.error_msg (ML_Compiler.exn_message exn); if Exn.is_interrupt exn then 130 else 1);
    in if rc = 0 then () else exit rc end) ();

end;