Skip to content
Related Articles
Open in App
Not now

Related Articles

Parbegin/Parend Concurrent Statement

Improve Article
Save Article
Like Article
  • Difficulty Level : Easy
  • Last Updated : 26 Feb, 2021
Improve Article
Save Article
Like Article

Prerequisite – Introduction of Process Synchronization 
PARBEGIN/PAREND statement is a higher-level language construct for specifying concurrency. All statements can be executed concurrently those are enclosed between PARBEGIN and PAREND. It is used in modelling precedence graph. It is used as an alternative for the FORK/JOIN statement. 

Note – 
PARBEGIN/PAREND is also called COBEGIN/COEND. 

Consider the following program: 
 

S0;
PARBEGIN;
   S1;
   S2;
   ...
   Sn-1;
PAREND;
Sn;

The above program is equivalent to the following precedence graph. 

 

Example – 
Construct the precedence graph for the following parbegin/parend program. 
 

begin
S1;
      parbegin
      S3;
      begin
      S2;
            parbegin
            S4;
            S5;
            parend;
            S6;
      end;
      parend;
S7;
end;

Explanation : 

 

We can also Parbegin two process

Void P( )                     Void Q( )

{                              {

A;                                   D;

B;                                    E;

C;                           }

}

The relative order among the statements of P & Q is always maintained

Advantages of Parbegin/Parend – 

  • It is a high-level language block-structure.
  • It has the advantage of structured control statements.
  • Semaphores mechanism is also one of the advantages.

Disadvantages of Parbegin/Parend – 

  • It is not powerful enough to model all possible precedence graph.
  • It is less powerful than the FORK/JOIN construct in modelling precedence graph.
My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!