module System.CPUTime.Unsupported ( getCPUTime , getCpuTimePrecision ) where import GHC.IO.Exception getCPUTime :: IO Integer getCPUTime :: IO Integer getCPUTime = forall a. IOError -> IO a ioError (Maybe Handle -> IOErrorType -> String -> String -> Maybe CInt -> Maybe String -> IOError IOError forall a. Maybe a Nothing IOErrorType UnsupportedOperation String "getCPUTime" String "can't get CPU time" forall a. Maybe a Nothing forall a. Maybe a Nothing) getCpuTimePrecision :: IO Integer getCpuTimePrecision :: IO Integer getCpuTimePrecision = forall a. IOError -> IO a ioError (Maybe Handle -> IOErrorType -> String -> String -> Maybe CInt -> Maybe String -> IOError IOError forall a. Maybe a Nothing IOErrorType UnsupportedOperation String "cpuTimePrecision" String "can't get CPU time" forall a. Maybe a Nothing forall a. Maybe a Nothing)