author | wenzelm |
Mon, 15 Feb 2016 14:55:44 +0100 | |
changeset 62337 | d3996d5873dd |
parent 61925 | ab52f183f020 |
permissions | -rw-r--r-- |
(* Title: Pure/RAW/ml_profiling_polyml-5.6.ML Author: Makarius Profiling for Poly/ML 5.6. *) structure ML_Profiling = struct fun profile_time pr f x = PolyML.Profiling.profileStream pr PolyML.Profiling.ProfileTime f x; fun profile_time_thread pr f x = PolyML.Profiling.profileStream pr PolyML.Profiling.ProfileTimeThisThread f x; fun profile_allocations pr f x = PolyML.Profiling.profileStream pr PolyML.Profiling.ProfileAllocations f x; end;