Tag Archive | "threading"

Python, Threads and the Global Interpreter Lock (GIL)

Wednesday, October 13, 2010

2 Comments

Threads Threads make it possible to execute multiple pieces of code in parallel, which means either utilizing multiple processors or having the operating system schedule execution time for the threads sequentially on one processor. In contrast to multiprocessing (forking) where multiple separated processes are started, all threads run in a single process and have access [...]

Continue reading...