{-# LANGUAGE CPP #-} module Debug.Breakpoint.TimerManager.Names ( psqModName , timerManagerModName , pkgName ) where psqModName :: String psqModName :: String psqModName = #if MIN_VERSION_ghc(9,10,0) "GHC.Internal.Event.PSQ" #else String "GHC.Event.PSQ" #endif timerManagerModName :: String timerManagerModName :: String timerManagerModName = #if MIN_VERSION_ghc(9,10,0) "GHC.Internal.Event.TimerManager" #else String "GHC.Event.TimerManager" #endif pkgName :: String pkgName :: String pkgName = #if MIN_VERSION_ghc(9,10,0) "ghc-internal" #else String "base" #endif