I've been looking around, but I can't seem to find a message-passing concurrency (Actor) library for C (not C++). Ideally the candidate would be based on something like libevent underneath allowing for non-blocking I/O in most places. Does anyone know of such a library?
+2
A:
The traditional libraries for message-passing concurrency in C are PVM and MPI. MPI is only a specification - a common implementation is MPICH.
Martin v. Löwis
2008-11-02 20:24:34
I was aware of MPI and it's ilk but this is not what I was looking for. I was looking for something more along the lines of Theriom or Kilim.
Toby DiPasquale
2008-11-02 22:18:42
Then you should have stated in your question that you are aware of MPI, and why it isn't an acceptable solution.
Martin v. Löwis
2008-11-03 04:49:44