Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 247114 | Differences between
and this patch

Collapse All | Expand All

(-)a/gameServer/Actions.hs (-1 / +1 lines)
Lines 562-568 processAction (AddClient cl) = do Link Here
562
    si <- gets serverInfo
562
    si <- gets serverInfo
563
    newClId <- io $ do
563
    newClId <- io $ do
564
        ci <- addClient rnc cl
564
        ci <- addClient rnc cl
565
        _ <- Exception.mask (forkIO . clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci)
565
        _ <- Exception.mask (\x -> forkIO $ clientRecvLoop (clientSocket cl) (coreChan si) (sendChan cl) ci x)
566
566
567
        infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl))
567
        infoM "Clients" (show ci ++ ": New client. Time: " ++ show (connectTime cl))

Return to bug 247114