{-# LINE 1 "libraries/base/GHC/Event/EPoll.hsc" #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE GeneralizedNewtypeDeriving
, NoImplicitPrelude
, BangPatterns
#-}
module GHC.Event.EPoll
(
new
, available
) where
import qualified GHC.Event.Internal as E
{-# LINE 29 "libraries/base/GHC/Event/EPoll.hsc" #-}
import GHC.Base
new :: IO E.Backend
new = errorWithoutStackTrace "EPoll back end not implemented for this platform"
available :: Bool
available = False
{-# INLINE available #-}
{-# LINE 247 "libraries/base/GHC/Event/EPoll.hsc" #-}