The lightweight-processes tag has no wiki summary.
0
votes
1answer
523 views
What the difference between lightweight process and thread?
I found an answer to the question here. But I don't understand some ideas in the answer. For instance, lightweight process is said to share its logical address space with other processes. What does it ...
1
vote
2answers
381 views
How are light weight threads scheduled by the linux kernel on a multichip multicore SMP system?
I am running a parallel algorithm using light threads and I am wondering how are these assigned to different cores when the system provides several cores and several chips. Are threads assigned to a ...
32
votes
3answers
3k views
Haskell lightweight threads overhead and use on multicores
I've been reading the "Real World Haskell" book, the chapter on concurrency and parallelism. My question is as follows:
Since Haskell threads are really just multiple "virtual" threads inside one ...
45
votes
6answers
6k views
Technically why is processes in Erlang more efficient than OS threads?
Erlangs Characteristics
From Erlang Programming (2009):
Erlang concurrency is fast and scalable. Its processes are lightweight in that the Erlang virtual machine does not create an OS thread for ...
3
votes
4answers
2k views
Erlang-style light-weight processes in .NET
Is there any way to implement Erlang-style light-weight processes in .NET?
I found some projects that implement Erlang messaging model (actors model). For example, Axum. But I found nothing about ...
6
votes
3answers
582 views
What's the difference between “green threads” and Erlang's processes?
After reading about Erlang's lighweight processes I was pretty much sure that they were "green threads". Until I read that there are differences between green threads and Erlang's processes. But I ...
4
votes
3answers
493 views
What other systems beside Erlang are based on “Green Processes”?
I was reading this informative page on Green Thread (Wikipedia) and I wonder: what other programming systems rely on "green processes" beside Erlang?
Edit: " Green Thread != Green Process "
Green ...
27
votes
3answers
3k views
How, if at all, do Erlang Processes map to Kernel Threads?
Erlang is known for being able to support MANY lightweight processes; it can do this because these are not processes in the traditional sense, or even threads like in P-threads, but threads entirely ...