{-# LINE 1 "libraries/base/GHC/Event/KQueue.hsc" #-}
{-# LANGUAGE Trustworthy #-}
{-# LANGUAGE CApiFFI
           , GeneralizedNewtypeDeriving
           , NoImplicitPrelude
           , RecordWildCards
           , BangPatterns
  #-}

module GHC.Event.KQueue
    (
      new
    , available
    ) where

import qualified GHC.Event.Internal as E



{-# LINE 19 "libraries/base/GHC/Event/KQueue.hsc" #-}
import GHC.Base

new :: IO E.Backend
new :: IO Backend
new = [Char] -> IO Backend
forall a. [Char] -> a
errorWithoutStackTrace [Char]
"KQueue back end not implemented for this platform"

available :: Bool
available :: Bool
available = Bool
False
{-# INLINE available #-}

{-# LINE 309 "libraries/base/GHC/Event/KQueue.hsc" #-}