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

Properties for of static ram, a) Give eight properties for each of static R...

a) Give eight properties for each of static RAM (SRAM) and DRAM (dynamic RAM) and provide the low-level structure of each type of memory. b) Assume a system with 16 Megabytes o

Illustrate memory read operation, Q. Illustrate Memory Read operation? ...

Q. Illustrate Memory Read operation? Memory unit receives the address from a register known as the memory address register designated by MAR. Data is transferred to another re

Illustrate internal organisation of ram, Q. Illustrate Internal Organisatio...

Q. Illustrate Internal Organisation of RAM? The construction displayed in Figure below is made up of one JK flip-flop and 3 AND gates. The two inputs to system are one input bi

How is EISA bus different from ISA bus, How is EISA bus different from ISA ...

How is EISA bus different from ISA bus? Extended Industry Standard Architecture (EISA) is a 32 bit modification to ISA bus. As computers became larger and had wider data buses,

How to input to circuit, Q. How to input to circuit? Register A bit...

Q. How to input to circuit? Register A bits as a0, a1, a2 and a3 in the corresponding X bits of the Full Adder (FA). Register B bits as given in the Figure above as in

Determine in brief about laptop computers, Laptop computers Laptop comp...

Laptop computers Laptop computers have the obvious advantage over desk-top computers (PCs) in that they are fully portable. This is of specific value if a user wishes to do wor

What is base register addressing, Q. What is Base Register Addressing ? ...

Q. What is Base Register Addressing ? An addressing technique in which content of an instruction specifies base register is added to address field or displacement field of the

The concept of program-parallel computing, The Concept of Process Infor...

The Concept of Process Informally, a method is a program in execution, behind the program has been loaded in the main memory. However, a method is more than just a program code

Explain arithmetic shift micro-operations, Q. Explain arithmetic shift Micr...

Q. Explain arithmetic shift Micro-operations? In arithmetic shift a signed binary number is shifted to right or to the left. So an arithmetic shift-left causes a number to be m

When do we need to use cgi, There are innumerable caveats to this answer, b...

There are innumerable caveats to this answer, but basically any Webpage containing a form will need a CGI script or program to process the form inputs.

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