Hoogle Search
Within LTS Haskell 24.50 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
-
unix System.Posix.Files Want all currently available fields.
-
unix System.Posix.Files.ByteString Want all currently available fields.
-
unix System.Posix.Files.PosixString Want all currently available fields.
-
unix System.Posix.Signals Alias for sigSYS.
installHandler :: Signal -> Handler -> Maybe SignalSet -> IO Handlerunix System.Posix.Signals installHandler int handler iset calls sigaction to install an interrupt handler for signal int. If handler is Default, SIG_DFL is installed; if handler is Ignore, SIG_IGN is installed; if handler is Catch action, a handler is installed which will invoke action in a new thread when (or shortly after) the signal is received. If iset is Just s, then the sa_mask of the sigaction structure is set to s; otherwise it is cleared. The previously installed signal handler for int is returned
getAllGroupEntries :: IO [GroupEntry]unix System.Posix.User getAllGroupEntries returns all group entries on the system by repeatedly calling getgrent
getAllUserEntries :: IO [UserEntry]unix System.Posix.User getAllUserEntries returns all user entries on the system by repeatedly calling getpwent
getAllGroupEntries :: IO [GroupEntry]unix System.Posix.User.ByteString getAllGroupEntries returns all group entries on the system by repeatedly calling getgrent
getAllUserEntries :: IO [UserEntry]unix System.Posix.User.ByteString getAllUserEntries returns all user entries on the system by repeatedly calling getpwent
mutuallyExclusive :: Test -> Testtest-framework Test.Framework Mark all tests in this portion of the tree as mutually exclusive, so only one runs at a time