src/Pure/ML-Systems/polyml-5.2.1.ML
author wenzelm
Mon, 09 Nov 2009 21:30:54 +0100
changeset 33540 edf497b5b5d2
child 38894 f76ad0771f67
permissions -rw-r--r--
setup for official Poly/ML 5.3.0, which is now the default;
     1 (*  Title:      Pure/ML-Systems/polyml-5.2.1.ML
     2 
     3 Compatibility wrapper for Poly/ML 5.2.1.
     4 *)
     5 
     6 use "ML-Systems/unsynchronized.ML";
     7 
     8 open Thread;
     9 
    10 structure ML_Name_Space =
    11 struct
    12   open PolyML.NameSpace;
    13   type T = PolyML.NameSpace.nameSpace;
    14   val global = PolyML.globalNameSpace;
    15 end;
    16 
    17 fun reraise exn = raise exn;
    18 
    19 use "ML-Systems/polyml_common.ML";
    20 use "ML-Systems/multithreading_polyml.ML";
    21 
    22 val pointer_eq = PolyML.pointerEq;
    23 
    24 fun share_common_data () = PolyML.shareCommonData PolyML.rootFunction;
    25 
    26 use "ML-Systems/compiler_polyml-5.2.ML";
    27 use "ML-Systems/pp_polyml.ML";
    28