Tagged Questions
8
votes
2answers
105 views
How can I make sure main thread ends after all other threads ends?
import Control.Concurrent
main = do
forkIO $ putStrLn "123"
forkIO $ putStrLn "456"
I have written the code above. But when I executed it, I always got 123 only. 456 is not printed. I guess ...
3
votes
1answer
180 views
Memoizing IO Computations in Haskell
I have a function
f :: MonadIO m => a -> m b
which takes some input and returns an IO computation that will yield output. I want to "memoize" f so that I only ever perform these computations ...
4
votes
1answer
123 views
How to use thread safe shared variables in Haskell
IORefs, MVars, and TVars can be used to wrap a shared variable in a concurrent context. I've studied concurrent haskell for a while and now I've encounted some questions. After searching on ...
5
votes
2answers
163 views
Haskell concurrency and persistence
I've been reading the Beautiful Concurrency article about Haskell and STM.
The example given is a bank-account transfer.
Its a noddy bank transfer - its between two numbers sitting in heap memory.
...
4
votes
2answers
135 views
Port Haskell code using Control.Parallel to Scala
The Haskell code below uses par and pseq to do some multicore number-crunching as a toy to show several cores being used. What would be the easiest and most idiomatic way to express this in Scala? ...
35
votes
4answers
1k views
Why is there no implicit parallelism in Haskell?
Haskell is functional and pure, so basically it has all the properties needed for a compiler to be able to tackle implicit parallelism.
Consider this trivial example:
f = do
a <- Just 1
b ...
3
votes
1answer
162 views
Concurrent Thread Manager
I have the following implementation of a concurrent thread manager
newtype Query = Query String
type ThreadWorker = (Query, ThreadStatus)
data ThreadStatus = Running | Finished | Threw IOException
...
7
votes
2answers
121 views
What is the synchronization defect in this Haskell chat code, and what is the fix?
Simon Marlow gave a High performance concurrency talk at Haskell eXchange 2012. Due to time constraints, he skipped the section on a simple concurrent chat server. Curious about the elided content, a ...
17
votes
2answers
509 views
Which green threads libraries are available for C that can match the performance and ease of use of Haskell's green threads?
I am well used to relying on GHC's forkIO for portable lightweight threads when programming in Haskell.
What are equivalent libraries for C that can provide the same scalibility and ease of use?
...
3
votes
1answer
134 views
Multithreading in a monad
I need to run multiple concurrent processes in a context of the same monad, say, Connection. I expected something like the following would work:
main = runConnection connectionSettings $ do
forkIO ...
0
votes
1answer
87 views
Different concurrency behavior in ghci and runghc
I have some simple code which prints to the screen at fixed intervals of time, unless an IORef is set to indicate that the user is currently typing:
import Data.IORef
import Control.Concurrent
main ...
1
vote
1answer
69 views
return TVar after initialisation
Is it possible to return the newly created TVar in a do block? I tried to implement this using this code:
type Buffer a = TVar [[(a,a)]]
newBuffer :: STM (Buffer a)
newBuffer = newTVar [[]]
...
5
votes
0answers
380 views
Haskell and/or Clojure [closed]
I'm looking to expand my knowledge of programming languages and I keep looking at both Haskell and Clojure to learn.
So far I have spent a day with each and I am leaning towards Haskell as I find it ...
7
votes
1answer
95 views
What is the WHNF of a newtype and how does rseq work on a newtype?
Since newtypes are effectively removed during compilation, they don't have thunks, just values. So what happens if I ask for its WHNF using rseq? For example in
Sum (lengthyComputation :: Int) ...
15
votes
1answer
360 views
Relation between Haskell Threads and OS Threads in the GHC
I tried to find out how exactly are Haskell's threads (the ones spawned by forkIO) mapped to OS threads.
The first source of information which I found,
...
3
votes
0answers
79 views
Why is main executable busy when calling external executable with Shelly.Background
I am trying to write a program with Shelly to compile Delphi projects in parallel. I thought the program would be blocked while waiting for the Delphi compilers to return. But my program starts to max ...
8
votes
1answer
432 views
Speed up Haskell concurrency
MVar, TVar, IORef, ... I can't speedup a thunk problem (I think).
(My original problem is a threaded code, I do "forkIO" n-times calling "addMany"; but I think my problem is on "shW" function)
Let ...
5
votes
1answer
270 views
What is wrong with the following solution to the “Dining Philosophers”?
In order to get familiar with STM in Haskell, I wrote the following solution to the Dining Philosophers problem:
import Control.Concurrent
import Control.Concurrent.STM
import Control.Monad
import ...
4
votes
1answer
93 views
Is ThreadID consistent when shuffling Haskell threads around OS threads?
In Haskell forkIO creates an unbound (Haskell) thread, and forkOS creates a bound (native) thread. The answer to a previous question here that I had mentioned that Haskell threads are not guaranteed ...
9
votes
2answers
398 views
How does HOpenGL behave with regards to other threads and TChans in Haskell?
I'm doing some proof-of-concept work for a fairly complex video game I'd like to write in Haskell using the HOpenGL library. I started by writing a module that implements client-server event based ...
2
votes
2answers
128 views
Why MVar does not work with `par`?
Just curious. If I have 2 threads spawn using forkIO, communication between them can be done using MVar. I wonder if the same apply when using parallel Haskell's spark created using par. I understand ...
27
votes
4answers
751 views
Killing a thread when MVar is garbage collected
I have a worker thread which reads data repeatedly from an MVar and performs some useful work on that. After a while, the rest of the program forgets about that worker thread, which means that it will ...
4
votes
1answer
195 views
Improving simulation performance via concurrency
Consider this sequential procedure on a data structure containing collections (for simplicity, call them lists) of Doubles. For as long as I feel like, do:
Select two different lists from the ...
5
votes
1answer
279 views
Haskell framework to parallelize non-threadsafe C++ lib
I have a closed source non-threadsafe C++ shared lib that provides one function f :: ByteString -> ByteString. The run-time of this function can be something between one second and a couple of hours.
...
1
vote
2answers
316 views
Thread-safe state with Warp/WAI
I want to write a web server which stores its state in a State monad with wai/warp. Something like this:
{-# LANGUAGE OverloadedStrings #-}
import Network.Wai
import Network.Wai.Handler.Warp
import ...
10
votes
1answer
999 views
“Monad-friendly” event-based IO
I want to implement efficient single-threaded socket communication using "epoll"-style event management.
If I were to write a very imperative program "from scratch," I would do it basically like this ...
10
votes
2answers
542 views
Haskell concurrency - is forkIO really nondeterministic?
I'm trying to use concurrency in Haskell for a specific optimization in which only one of two values is required, and depending on the situation, either one may be much faster to create than the ...
3
votes
2answers
227 views
“Wait-free” data in Haskell
I've been led to believe that the GHC implementation of TVars is lock-free, but not wait-free. Are there any implementations that are wait-free (e.g. a package on Hackage)?
6
votes
2answers
339 views
Haskell: Concurrent data structure guidelines
I've been trying to get a understanding of concurrency, and I've been trying to work out what's better, one big IORef lock or many TVars. I've came to the following guidelines, comments will be ...
3
votes
1answer
129 views
Haskell: Attempt at parallel `atomicModifyIORef` implementation
From what I understand, modifications to IORefs are very quick, all they involve is updating a thunk pointer. Of course, the reader (i.e. someone who wants to see the value on their webpage) will then ...
3
votes
2answers
182 views
Haskell: Atomic IO wrapper/laziness?
I've wrote the following function that I believe should perform IO atomically (as long as everyone else is using the same MVar).
atomicIO :: MVar () -> IO a -> IO a
atomicIO mvar io =
do
...
1
vote
3answers
261 views
Haskell concurrency using simple IORef?
I've been asking a few questions about concurrency in Haskell, particular TVar, and I've had concerns about livelock with TVar.
Instead, I've proposed this solution.
(1) Wrap all shared data in the ...
16
votes
2answers
431 views
Haskell: How does 'atomicModifyIORef' work?
Can someone explain how atomicModifyIORef works? In particular:
(1) Does it wait for a lock, or optimistically try and retry if there's contention (like TVar).
(2) Why is the signature of ...
35
votes
1answer
845 views
Concurrent generic data structure without deadlocks or resource starvation
I've recently asked a number of questions regarding TVar, and I still have concerns about livelock.
So I thought of this structure:
Each transaction gets a unique priority (perhaps allocated in ...
7
votes
1answer
141 views
Haskell: TVar: orElse
Is the "else" part of orElse called when a transaction is retried due to another transaction writing to a TVar it had read, or only when retry is explicitly called?
6
votes
3answers
284 views
Haskell: TVar: Preventing starvation
I'm considering using a TVar to store some state in a web application (that can be recreated on restart). However, the contention aspects of TVar concern me. It seems that a frequent short running ...
2
votes
2answers
238 views
Haskell: Updating two or more TVars atomically. Possible?
Can one transaction update two different TVars in an atomic way? i.e. can I compose data structures out of lots of TVars to reduce contention? If so, could you provide an example?
2
votes
1answer
121 views
Container for Haskell TVars
I have a game server that spawns a thread for each client with forkIO. I want to, for example, share a list of clients and a list of monsters with all of them.
My first idea was to have one TVar ...
6
votes
2answers
231 views
Haskell: How does TVar work?
How does TVar work? From what I've read it attempts to run all transactions immediately upon receiving them, however, a transaction completing invalidates other currently running transactions, which ...
7
votes
1answer
431 views
Are haskell channels `Control.Concurrent.Chan` safe for multiple readers/producers?
I need to put together a concurrent system with one shared Control.Concurrent.Chan between threads. There will be only one consumer and many producers.
Looking at the Chan documentation I did not see ...
8
votes
1answer
172 views
Is there a way in Haskell to query thread state using ThreadID after a forkIO?
What I am looking for is a simple function of type:
alive :: ThreadID -> IO Bool
2
votes
1answer
267 views
Runtime performance degradation for C FFI Callback when pthreads are enabled
I am curious about the behavior of GHC runtime with threaded option in case when C FFI calls back Haskell function. I wrote code to measure overhead of a basic function callback (below). While the ...
2
votes
1answer
194 views
Memory footprint in threaded mode with forkIO when there is lot of contention for single MVar
The code below is just an experiment to see what happens when forkIO is called (to test GHC lightweight thread overhead - both memory overhead and effect of contention for MVar) with a function that ...
4
votes
1answer
181 views
Parallel IO Causes Random Text Output in Terminal
I'm using
import Control.Concurrent.ParallelIO.Global
main = parallel_ (map processI [1..(sdNumber runParameters)]) >> stopGlobalPool
where
processI :: Int -> IO ()
is some function, ...
15
votes
2answers
491 views
Why is concurrent haskell non deterministic while parallel haskell primitives (par and pseq) deterministic?
Don't quite understand determinism in the context of concurrency and parallelism in Haskell. Some examples would be helpful.
Thanks
3
votes
1answer
312 views
Why does my concurrent Haskell program terminate prematurely?
I have a UDP server that reflects every ping message it receives (this works well I think). I the client side I would then like to do two things:
make sure that I fired off N (e.g. 10000) messages, ...
1
vote
1answer
232 views
Using the Par monad with STM and Deterministic IO
I'm in the process of writing a report for an assignment in which I implemented a concurrent multicore branch and bound algorithm using the STM package and there was an issue I've come up against.
...
1
vote
2answers
157 views
How to exit from Hackstack Server App?
I'm creating a Happstack server application, but I don't know how to end the application .
If I have:
main = do
printf "begin server"
simpleHTTP nullConf myHomepage
printf "end server"
I can ...
5
votes
1answer
460 views
Help understanding MVar example in Haskell
I'm trying to understand the MVar example in the GHC latest docs -
data SkipChan a = SkipChan (MVar (a, [MVar ()])) (MVar ())
newSkipChan :: IO (SkipChan a)
newSkipChan = do
sem <- ...
3
votes
4answers
442 views
What's the best way to write some semaphore-like code in Haskell?
Suppose I have a function f which takes an integer argument. f may not terminate on some arguments, but its result is equally valuable. (For concreteness, the argument could be the seed to a random ...

