Click here to Skip to main content
15,886,362 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
Hi,

At several places I have read,

Quote:
Each thread has its own set of CPU registers and its own stack


Here, I can understand about stack, it's a data structure. But how thread can have its own CPU registers. They are fix in number and there are limitless number of threads are running in the system.

Regards
Posted

1 solution

Because they are part of what is called the execution Context. Basically, when a thread is suspended for whatever reason, the current machine state (all registers, including program counter, stack pointer and flag values) are saves as part of the Context with the Thread. The actual machine registers are then free for other Threads to use. When a Thread is resumed, the Context is restored back to where it came from, and the Thread does not even have to be made aware that it was suspended.

If this didn't occur, then the actual registers would be shared, and one task could corrupt them for another. It would also not be possible to restart a Thread on a different Core or even physical processor!
 
Share this answer
 
Comments
[no name] 29-Apr-12 8:02am    
Thanks. 5!
Sergey Alexandrovich Kryukov 29-Apr-12 21:59pm    
Correct, a 5.
--SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900