Duncan Coutts pushed to branch wip/dcoutts/issue-26717 at Glasgow Haskell Compiler / GHC Commits: 69de17bc by Duncan Coutts at 2026-02-11T23:39:09+00:00 FIXUP for Use BlockInfoForceNonClosure in the select I/O manager - - - - - 1 changed file: - rts/IOManager.c Changes: ===================================== rts/IOManager.c ===================================== @@ -772,7 +772,7 @@ bool syncIOWaitReady(Capability *cap, #if defined(IOMGR_ENABLED_SELECT) case IO_MANAGER_SELECT: { - StgWord why_blocked = rw == IORead ? BlockedOnRead : BlockedOnWrite + StgWord why_blocked = (rw == IORead ? BlockedOnRead : BlockedOnWrite) | BlockInfoForceNonClosure; tso->block_info.fd = fd; appendToIOBlockedQueue(cap, tso); View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/69de17bcefd81202f015119fb6d8d611... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/69de17bcefd81202f015119fb6d8d611... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Duncan Coutts (@dcoutts)