base-4.22.0.0: src/System/CPUTime/Unsupported.hs
module System.CPUTime.Unsupported
( getCPUTime
, getCpuTimePrecision
) where
import GHC.Internal.IO.Exception
import Prelude
getCPUTime :: IO Integer
getCPUTime =
ioError (IOError Nothing UnsupportedOperation
"getCPUTime"
"can't get CPU time"
Nothing Nothing)
getCpuTimePrecision :: IO Integer
getCpuTimePrecision =
ioError (IOError Nothing UnsupportedOperation
"cpuTimePrecision"
"can't get CPU time"
Nothing Nothing)