CSC/ECE 517 Summer 2008/wiki1 4 wm: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
This is the placeholder for Wei And Mary's thread page
= Introduction =
    A thread is a basic unit of CPU utilization.  A traditional process has a single thread of control.  Many modern operating systems provide features enabling a process to contain multiple threads of control.  If the process has multiple threads of control, it can do more than one task at a time, such as, displaying graphics and reading keystrokes.  Threads are used mainly to run asynchronous tasks and pass the application’s tasks to an executor.  They are useful because they reduce the overall time of execution of programs. All threads belonging to the same process share its code section, data section and other operating system resources, such as open files and signals.  Thus multithreading is more efficient than having parallel processes running for the same program, which require a huge overhead.

Revision as of 16:22, 6 June 2008

Introduction

   A thread is a basic unit of CPU utilization.  A traditional process has a single thread of control.  Many modern operating systems provide features enabling a process to contain multiple threads of control.  If the process has multiple threads of control, it can do more than one task at a time, such as, displaying graphics and reading keystrokes.  Threads are used mainly to run asynchronous tasks and pass the application’s tasks to an executor.  They are useful because they reduce the overall time of execution of programs. All threads belonging to the same process share its code section, data section and other operating system resources, such as open files and signals.  Thus multithreading is more efficient than having parallel processes running for the same program, which require a huge overhead.