Haskell Hierarchical Libraries (unix package)Source codeContentsIndex
System.Posix.Unistd
Portabilitynon-portable (requires POSIX)
Stabilityprovisional
Maintainerlibraries@haskell.org
Contents
System environment
Sleeping
Description
POSIX miscellaneous stuff, mostly from unistd.h
Synopsis
data SystemID = SystemID {
systemName :: String
nodeName :: String
release :: String
version :: String
machine :: String
}
getSystemID :: IO SystemID
data SysVar
= ArgumentLimit
| ChildLimit
| ClockTick
| GroupLimit
| OpenFileLimit
| PosixVersion
| HasSavedIDs
| HasJobControl
getSysVar :: SysVar -> IO Integer
sleep :: Int -> IO Int
usleep :: Int -> IO ()
System environment
data SystemID
Constructors
SystemID
systemName :: String
nodeName :: String
release :: String
version :: String
machine :: String
getSystemID :: IO SystemID
data SysVar
Constructors
ArgumentLimit
ChildLimit
ClockTick
GroupLimit
OpenFileLimit
PosixVersion
HasSavedIDs
HasJobControl
getSysVar :: SysVar -> IO Integer
Sleeping
sleep :: Int -> IO Int

Sleep for the specified duration (in seconds). Returns the time remaining (if the sleep was interrupted by a signal, for example).

GHC Note: the comment for usleep also applies here.

usleep :: Int -> IO ()

Sleep for the specified duration (in microseconds).

GHC Note: threadDelay is a better choice. Without the -threaded option, usleep will block all other user threads. Even with the -threaded option, usleep requires a full OS thread to itself. threadDelay has neither of these shortcomings.

Produced by Haddock version 0.8