Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is thread a windows concept?

So i was reading "CLR via C#" and found this line "A thread is a Windows concept whose job is to virtualize the CPU". Really? Was single\multi thread originally from Windows?

Googling for justification did not help and hence seeking help from the community.

like image 307
Antony Thomas Avatar asked Jul 17 '12 18:07

Antony Thomas


2 Answers

I suppose what the author really meant is that threading as a mechanism is something that is being managed by Windows and not .NET framework.

like image 112
Nikola Anusev Avatar answered Oct 06 '22 13:10

Nikola Anusev


Short answer: No, it's not solely a Windows concept, and the concept has been around for quite a long time.

like image 43
Larsenal Avatar answered Oct 06 '22 15:10

Larsenal