green-threads

Green-threads and thread in Python

Green-threads and thread in Python Question: 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 work in environments that do not have native thread support. Python’s threads are implemented as pthreads (kernel threads), and because …

Total answers: 2