vote up 2 vote down star

How would I even go about forking a child process using Haskell in the first place?

Also, if pipes are an obvious solution to the data sharing question - is there any other way to do it besides using pipes? I'm familiar with the use of shared memory segments in C (the shmget, *shmat, shmdt and shmctl functions). Could Haskell be able to imitate this? If so, how?

I'd be very grateful for any help you could spare.

I must admit I'm very much new to functional programming languages, even more so when it comes to Haskell. So forgive me (and please correct me) if I said something silly.

flag

2 Answers

vote up 3 vote down check

Better yet, use Software Transactional Memory - that is, TVars and TChannels.

Will recommend the same book, different chapter: http://book.realworldhaskell.org/read/software-transactional-memory.html

Here is a good small example of this technique in action: http://sequence.complete.org/node/257

link|flag
vote up 1 vote down

use MVars or Channels. See chapter 24 of RealWorld Haskell: http://book.realworldhaskell.org/read/concurrent-and-multicore-programming.html

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.