What is Thread
I wanted to know, what ia thread
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Munir ShaikhPosted Aug 1, 2007, 6:11 AM
AlanPosted Jul 27, 2007, 11:20 AM
It's possible for a program (or 'process' as its technically called) to do not just one task but several tasks simultaneously. Each of these tasks are called 'theads of execution' or 'threads' for short.
Of course, unless your system has several processors, this notion of several threads running simultaneously is an illusion because a single core processor can only do one thing at a time. The operating system creates this illusion by switching between the different theads according to certain rules but this generally happens so fast that the user of the program is unaware of it.
Posted Jul 27, 2007, 10:27 AM