Tagged Questions

Green threads are threads that are scheduled by a virtual machine (VM) instead of natively by the underlying operating system. They emulate multithreaded environments in user space without relying on any native OS capabilities.

learn more… | top users | synonyms

32
votes
6answers
3k 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 ...
7
votes
3answers
628 views

How long does it take to create 1 million threads in Haskell?

What I understand, Haskell have green threads. But how light weight are they. Is it possible to create 1 million threads? Or How long would it take for 100 000 threads?
7
votes
6answers
2k views

Which scripting languages support multi-core programming?

I have written a little python application and here you can see how Task Manager looks during a typical run. While the application is perfectly multithreaded, unsurprisingly it uses only one CPU ...
4
votes
6answers
225 views

can c/c++ do preemeptive multitasking in a single thread? [closed]

Preemptive multitasking in C/C++: can a running thread be interrupted by some timer and switch between tasks? Many VMs and other language runtimes using green-threading and such are implemented in ...
4
votes
3answers
354 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 ...
3
votes
3answers
363 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 ...
3
votes
1answer
1k views

Tkinter locks python when Icon loaded and tk.mainloop in a thread

Here's the test case... import Tkinter as tk import thread from time import sleep if __name__ == '__main__': t = tk.Tk() thread.start_new_thread(t.mainloop, ()) # ...
2
votes
1answer
258 views

What exactly makes Erlang process, green thread, coroutine “lighter” than kernel thread? What about context switching that's heavy? [closed]

Possible Duplicate: Technically why is processes in Erlang more efficient than OS threads? Any time Elrang processes or green threads or coroutines are mentioned, they are always described ...
1
vote
1answer
54 views

Stackless Python - profile single tasklet execution time

In my server written in Stackless Python, I occasionally am getting large spikes in CPU usage for 5-10 seconds durations. This happens sporadically so I'm having trouble tracking it down. I've ...
0
votes
2answers
210 views

Does LoadRunner use native or green vuser threads?

I set up 100 virtual users for a Windows version of LoadRunner, with the 'Run vuser as a thread' option enabled. I then used Process Explorer on wlrun.exe (the LoadRunner Controller process) to see ...
0
votes
4answers
302 views

Combining two Runnable objects

Say for example that I have a Runnable called RunnableA that does something. I also have a Runnable called RunnableB that does something else. Is there a way that I can combine these two Runnables ...
0
votes
4answers
2k views

Using Thread.new to send email on rails

I've been sending emails on my application (ruby 1.8.7, rails 2.3.2) like this Thread.new{UserMailer.deliver_signup_notification(user)} Since ruby use green threads, there's any performance ...