Python
What is the Global Interpreter Lock (GIL)?
The GIL is a mutex in CPython that allows only one thread to execute Python bytecode at a time, even on multi-core systems.
The GIL is a mutex in CPython that allows only one thread to execute Python bytecode at a time, even on multi-core systems.