May 2012
M T W T F S S
« Apr    
 123456
78910111213
14151617181920
21222324252627
28293031  

Overview of Threads




A thread is an encapsulation of the flow of control in a program. Most people are used to writing single-threaded programs – that is, programs that only execute one path through their code “at a time”. Multi-threaded programs may have several threads running through different code paths “simultaneously”. A thread is similar to the sequential [...]