Ticket #3473 (closed bug: fixed)

Opened 4 years ago

Last modified 4 years ago

System.Posix.Semaphore shouldn't create finalizers with Foreign.newForeignPtr

Reported by: kaol Owned by: simonmar
Priority: normal Milestone: 6.12.1
Component: libraries/unix Version: 6.10.4
Keywords: Cc:
Operating System: Linux Architecture: x86
Type of failure: Difficulty: Unknown
Test Case: Blocked By:
Blocking: Related Tickets:

Description

Running this program

import System.Posix.Semaphore

main = do
        s <- semOpen "c" (OpenSemFlags True False) 0666 1
        semThreadWait s
        v <- semGetValue s
        putStrLn "Type!"
        a <- getLine
        putStrLn $ "OK, " ++ a
        semPost s

fails like this:

Type!
abc
OK, abc
sem: error: a C finalizer called back into Haskell.
This was previously allowed, but is disallowed in GHC 6.10.2 and later.
To create finalizers that may call back into Haskll, use
Foreign.Concurrent.newForeignPtr instead of Foreign.newForeignPtr.

The attached patch for libraries/unix/System/Posix/Semaphore.hsc should fix this.

Attachments

semaphore_ffi_fix Download (1.2 KB) - added by kaol 4 years ago.

Change History

Changed 4 years ago by kaol

Changed 4 years ago by simonmar

  • owner set to simonmar
  • difficulty set to Unknown
  • milestone set to 6.12.1

I'll validate and push; thanks.

Changed 4 years ago by simonmar

  • status changed from new to closed
  • resolution set to fixed

Applied

Tue Sep  8 07:25:36 PDT 2009  Simon Marlow <marlowsd@gmail.com>
  * Use Foreign.Concurrent for Haskell finalizers (#3473)
Note: See TracTickets for help on using tickets.