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.
0
votes
0answers
17 views
Getting OS X Instruments to work with custom (green) threads
We have a piece of software that implements a custom version of cooperative (green) multitasking. It works great on OS X, but we can't get Instruments to work properly to profile memory -- Instruments ...
0
votes
1answer
76 views
How to convert synchronous blocking shared memory model code to asynchronous coroutines running on thread pool?
While there are lots of solutions matching my question partially, I'd like to know if a complete match exists. It's hard to find a complete solution because of these partial ones occupying search ...
17
votes
2answers
514 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?
...
1
vote
3answers
176 views
`eventlet.spawn` doesn't work as expected
I'm writing a web UI for data analysis tasks.
Here's the way it's supposed to work:
After a user specifies parameters like dataset and learning rate, I create a new task record, then a executor for ...
2
votes
1answer
167 views
How can I raise exception in main thread when using eventlet.GreenPool.spawn
I run some task using eventlet.GreenPool.spawn, then wait for all greanthreads to finish. I know there would be an exception raised - how can I catch that exception and throw it in a main thread? I am ...
12
votes
2answers
679 views
Green-threads and thread in python
As Wikipedia States:
Green threads emulate multi-threaded environments without relying on any native OS capabilities, and they are managed in user space instead of kernel space, enabling them to ...
1
vote
1answer
136 views
Java green threads using UNIX ucontext library via JNI. Is it possible?
I'm developing a simple, educational example of green (cooperative) quantum-based threads using ucontext. But I'm facing problems. The example provided below is very easy to follow amd I'll thank any ...
2
votes
2answers
509 views
Is blocking an issue with greenlets?
I understand blocking code is a sin when it comes to event loops (i.e. NodeJS), but what about with greenlets (which I believe are green threads)? Is there an issue running code that calls blocking ...
2
votes
2answers
444 views
Is it safe to mix green threads and native threads in a single python process?
Firstly, is it safe to mix green threads such as eventlet or gevent with python native threads from the standard library, i.e. Lib/threading.py in the same python process?
Secondly, if it is safe, is ...
6
votes
3answers
313 views
Why are user-level threads in Java called “green”? [duplicate]
Possible Duplicate:
Green Threads vs Non Green Threads
Why are Java threads implemented at the user level in the JVM called "green threads"? Is it by analogy to environmentalism, meaning ...
1
vote
1answer
118 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 ...
4
votes
6answers
577 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 ...
3
votes
1answer
652 views
What exactly makes Erlang process, green thread, coroutine “lighter” than kernel thread? What about context switching that's heavy? [duplicate]
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 ...
0
votes
2answers
438 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 ...
1
vote
4answers
844 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 ...
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 ...
6
votes
3answers
584 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 ...
7
votes
3answers
1k 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?
5
votes
1answer
3k 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, ())
# ...
8
votes
6answers
3k 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 ...
1
vote
4answers
4k 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 ...