base-4.9.1.0: Basic libraries

Copyright(c) The University of Glasgow 1994-2002
Licensesee libraries/base/LICENSE
Maintainercvs-ghc@haskell.org
Stabilityinternal
Portabilitynon-portable (GHC extensions)
Safe HaskellTrustworthy
LanguageHaskell2010

GHC.Conc.Windows

Contents

Description

Windows I/O manager

Synopsis

Documentation

Waiting

threadDelay :: Int -> IO () #

Suspends the current thread for a given number of microseconds (GHC only).

There is no guarantee that the thread will be rescheduled promptly when the delay has expired, but the thread will never continue to run earlier than specified.

registerDelay :: Int -> IO (TVar Bool) #

Set the value of returned TVar to True after a given number of microseconds. The caveats associated with threadDelay also apply.

Miscellaneous

asyncRead :: Int -> Int -> Int -> Ptr a -> IO (Int, Int) #

asyncWrite :: Int -> Int -> Int -> Ptr a -> IO (Int, Int) #

asyncDoProc :: FunPtr (Ptr a -> IO Int) -> Ptr a -> IO Int #