fix kqueue build

This commit is contained in:
Joey Hess 2012-07-30 16:32:32 -04:00
parent 453b185c85
commit b2e359a15d
2 changed files with 15 additions and 7 deletions

View file

@ -236,9 +236,14 @@ updateAlertMap dstatus a = notifyAlert dstatus `after` modifyDaemonStatus_ dstat
- The alert is left visible afterwards, as filler.
- Old filler is pruned, to prevent the map growing too large. -}
alertWhile :: DaemonStatusHandle -> Alert -> IO Bool -> IO Bool
alertWhile dstatus alert a = do
alertWhile dstatus alert a = alertWhile' dstatus alert $ do
r <- a
return $ (r, r)
alertWhile' :: DaemonStatusHandle -> Alert -> IO (Bool, a) -> IO a
alertWhile' dstatus alert a = do
let alert' = alert { alertClass = Activity }
i <- addAlert dstatus alert'
r <- bracket_ noop noop a
updateAlertMap dstatus $ convertToFiller i r
(ok, r) <- bracket_ noop noop a
updateAlertMap dstatus $ convertToFiller i ok
return r