Tagged Questions
11
votes
3answers
330 views
STM monad problem
This is just a hypothetical scenario to illustrate my question. Suppose that there are two threads and one TVar shared between them. In one thread there is an atomically block that reads the TVar ...
9
votes
1answer
400 views
How to make Haskell's TChan defer messages like Erlang's message queues can?
Consider the following Erlang code:
-module(testit).
-export([testit/0]).
testit() ->
Pid = spawn(fun testit_proc/0),
Pid ! final,
Pid ! one,
Pid ! two,
io:format("Root ...
8
votes
2answers
244 views
A way to form a 'select' on MVars without polling
I have two MVars (well an MVar and a Chan). I need to pull things out of the Chan and process them until the other MVar is not empty any more. My ideal solution would be something like the UNIX ...
8
votes
3answers
615 views
What algorithms are used in Clojure, Haskell (and other languages) for STM?
As I understand there are several different algorithms for implementing Software Transactional Memory (and this is a quite active research area).
Where can I find (without having to dive into source ...
5
votes
3answers
354 views
Is Software Transactional Memory the same as database transactions?
I have read alot about Software Transactional Memory, especially in relation to Haskell but I am trying to figure how it is different from database transactions? Are there some advantages I do not ...
5
votes
2answers
244 views
Choosing a consistency model for a concurrent programming language
I am in the design phase of a programming language, currently thinking about the concurrency aspects. I need to figure out a consistency model, i.e. how data is handled by concurrent processes ...
4
votes
1answer
322 views
How to add a finalizer on a TVar
Background
In response to a question, I built and uploaded a bounded-tchan (wouldn't have been right for me to upload jnb's version). If the name isn't enough, a bounded-tchan (BTChan) is an STM ...