I have the following program:
module Main where
import System (getArgs)
import Control.Concurrent
import Control.Monad
spawn left id = do
right <- newEmptyMVar
forkIO (thread id left right)
return right
thread id left right = go
where go = do l <- takeMVar left
putStrLn (show id)
putMVar right ()
main = do
args <- getArgs
if null args then
putStrLn "Arguments not supplied"
else do
initial <- newEmptyMVar
final <- foldM spawn initial [1..(read (head args))]
putMVar initial ()
takeMVar final
As you can see, it just creates a bunch of threads: each thread prints an integer, but the second thread waits for the first before printing, the third waits for the second and so on. Let us not discuss the usefulness of this program (it's just an exercise).
Now, when I try to create one million threads, the program is killed with SIGKILL. I'd like to know the reason of this. Is it because of too many MVars?
Thanks.