blob: 409c60c63cdbd799c22440eba5fad06d14eca70f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
import Control.Concurrent
import Control.Monad
import GHC.Clock
import System.IO
import System.Posix.IO
import System.Timeout
main :: IO ()
main = do
(readPipe, _) <- createPipe
readPipeHandle <- fdToHandle readPipe
let nanoSecondsPerSecond = 1000 * 1000 * 1000
let milliSecondsPerSecond = 1000
let timeToSpend = 1
let timeToSpendNano = timeToSpend * nanoSecondsPerSecond
let timeToSpendMilli = timeToSpend * milliSecondsPerSecond
start <- getMonotonicTimeNSec
b <- hWaitForInput readPipeHandle timeToSpendMilli
end <- getMonotonicTimeNSec
let timeSpentNano = fromIntegral $ end - start
let delta = timeSpentNano - timeToSpendNano
-- We can never wait for a shorter amount of time than specified
putStrLn $ "delta >= 0: " ++ show (delta > 0)
|