Thread, Mutex and Semaphore
February 25th, 2008 by admin
What is a thread?A UNIX process contains both the executing program and a bundle of resources such as file descriptor table and address space. In MACH a task contains a bundle of resources; threads handle all execution activities. All threads associated with a given task share the task’s resources.Thus thread is essentially a program counter, […]
Category: Technical