Explain the concept of thread, Computer Engineering

Assignment Help:

The Concept of Thread

A thread is a sequential flow of control within a process. A process is able to have one or more threads. Threads have their own register-values and program-counter but they share memory space and other resources of the process. Every process begins with a single thread. Through the execution, other threads can be created as and when required. Similar to processes, every thread has an execution state (terminated, ready, blocked or running). A thread has right to use the memory address space and resources of its process. Threads have similar life cycles as processes do. A single processor system may support concurrency by switching execution among two or more threads. A multi processor system may support parallel concurrency by executing a separate thread on every processor. There are three fundamental techniques in concurrent programming languages for terminating and creating threads: 

  • Unsynchronised creation and termination - In this mode threads are created and terminated by means of library functions for example START_PROCESS, CREATE_PROCESS, START_THREAD, CREATE_THREAD and. Thus because of these function calls a new thread or process is created and starts executing independent of its parents.
  • Synchronized termination and unsynchronised creation: This manner uses two instructions: JOIN and FORK. The FORK instruction creates a new thread or process. When the parent needs the child's (thread or process) result, it calls JOIN instruction. At this junction two processes (threads) are synchronised.
  • Synchronised termination and creation: The most often system construct to implement synchronization is COBEGIN...COEND. The threads among the COBEGIN...COEND construct are implemented in parallel. The termination of parent-child is suspended till all child threads are terminated.

We can think of a thread as essentially a lightweight process. Though, threads propose a number of advantages over processes. The advantages are as follows:

a)  It does not take so much time to create and terminate a new thread than to create and terminate a process. The reason is that a newly created thread uses the current process address space.  

b)  It does not take so much time to switch between two threads within a common process, partly since the newly created thread uses current process address space. 

c)  Less communication overheads -- communicating between the threads of one process is simple since the threads share amongst other entities the address space. So, data generated by one thread is right away available to all other threads.


Related Discussions:- Explain the concept of thread

What are advantages and drawbacks of latches, What are advantages and drawb...

What are advantages and drawbacks of latches? Advantages and drawbacks of latches: Area of a latch is classically less than a Flip Flop. It consumes less power, becaus

Compare memory mapped i/o with i/o mapped i/o, Compare memory mapped I/O wi...

Compare memory mapped I/O with I/O mapped I/O. Memory Mapped I/O Scheme: In this scheme there is only one address space. Address space is stated as all possible addresses tha

Define object oriented modelling, Object oriented modelling Object ori...

Object oriented modelling Object oriented modelling is entirely a new way of thinking about queries. This methodology is all about visualizing the things by using models organ

Explain about subsystem and object of object oriented, Explain about subsys...

Explain about subsystem and object of object oriented modeling A subsystem is a grouping of elements of that constitutes a specification of behaviour offered by other contained

C program, #how to write c program for all types of beam reactions

#how to write c program for all types of beam reactions

Average data transfer rate in floppy, Q. Average data transfer rate in flop...

Q. Average data transfer rate in floppy? A floppy is about 0.64 mm thick and is available in diameters 5.25 inch and 3.5 inch. Data are arranged in form of tracks and sectors.

Basics of caches - computer architecture, Basics of Caches: "The cache...

Basics of Caches: "The caches are situated on basis of blocks, the shortest amount of data which may be copied between 2 adjacent levels at a time. "If requested data by th

Define end directive and assume directive, END DIRECTIVE: ENDS directive e...

END DIRECTIVE: ENDS directive ends a segment and ENDP directive ends a procedure and END directive ends whole program which appears as last statement. ASSUME Directive:   An .

Using aspx view engine, When using aspx view engine, to have a steady look ...

When using aspx view engine, to have a steady look and feel, across all pages of the application, we can build use of asp.net master pages. What is asp.net master pages equal, when

Explain about the view selection problem, Often calculating all the data is...

Often calculating all the data is not possible by aggregations for this reason some of the difficult data problems are solved. In order to verify which data should be solved and me

Write Your Message!

Captcha
Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd