What is Thread
A thread is a fundamental unit of CPU utilization
–a thread ID
–a program counter
–a register set
–a stack
–
It shares with other threads belonging to the same process
–code section and data section
–other OS resources, such as open files
我思故我在