I know that if I have multiple threads calling putStrLn without any kind of concurrency control that the output of the threads may be interleaved.
My question is whether putStrLn is thread-safe modulo this interleaved output?
I am presuming that putStrLn is a buffered write operation, so I'm really asking if any corruption of the output buffer can occur by having two threads call putStrLn at the same time.
And in general, what can be said about the thread safety of Haskell's (really GHC's) other "standard I/O" functions? In particular, for any of the buffered read operations is it possible for the same character to get returned to two different threads making the same read call at the same time?
putStrLnand friends implemented viawriteandselectcouple for blocks of a fixed length (when with line- or block- buffering), so the question is whetherwriteis thread-safe or not. POSIX requires thread-safety forwrite(1003.1-2001:2.9.1 & 2.9.7), and usually it is. – ht. Nov 25 '12 at 12:34MVarlocks implemented withfutex(when withthreadedruntime). So @shachaf answer is correct. – ht. Nov 25 '12 at 12:52