in Operating System retagged by
3,107 views
16 votes
16 votes

A given set of processes can be implemented by using only parbegin/parend statement, if the precedence graph of these processes is ______

in Operating System retagged by
3.1k views

4 Comments

pls explain the concept of precedence graph @Arjun Sir @Bikram Sir
1
1
edited by

A precedence graph is a directed, acyclic graph whose nodes correspond to individual statements.

see the example here  http://uclab.khu.ac.kr/lectures/2003_autumn_os/lecture3.pdf

also read https://cis.temple.edu/~giorgio/old/cis307s96/readings/precedence.html

8
8
is perbrgin /perend is similar with cobegin/coend ?
0
0

1 Answer

17 votes
17 votes
Best answer

A given set of processes can be implemented by using only parbegin/parendstatement, if the precedence graph of these processes is properly nested 

Reference : http://nob.cs.ucdavis.edu/classes/ecs150-2008-04/handouts/sync.pdf

  1. It should be closed under par begin and par end.
  2. Process execute concurrently.


https://gateoverflow.in/1739/gate1998_24#viewbutton

In this question precedence graph is nested.

  1. All the process execute concurrently,  closed under par begin and par end.
     
  2. If you see all the serial  execution come then signal the resource and and parallel process down the value (resource ) similar all the process which are which are dependent to other one, other one release the resource then it will be got that with down and after release the its own resource. In the sense all the process are executing concurrently.
edited by
by

4 Comments

edited by

I think "properly nested" graphs represent any one of the below:

  1. inner loops of begin-end which is enclosed in the outer loop of parbegin-parend
  2. inner loops of parbegin-parend which is enclosed in the outer loop of begin-end. (Example of this is the below diagram.)

And the question is asking for precedence graph of processes that can be implemented using only parbegin and parend. I think it is different from "properly nested" graphs. The graph expected in the question would be as the below diagram. (I don't know the exact name given for these type of precedence graphs)

 

Reference: https://www.ics.uci.edu/~bic/os/OS/PROOFS/bicc02v2.pdf

An important class of process flow graphs are those that are properly nested. Let S(p1,...,pn) denote the serial execution of processes p1 through pn and let P(p1,...,pn) denote the parallel execution of processes p1 through pn. Then a process flow graph is properly nested if it can be described by the functions S and P, and only function composition.

2
2
is perbrgin /perend is similar with cobegin/coend ?
0
0
edited by

@amlan97 Yes they are the same. co - concurrent, par -  parallel.
https://cis.temple.edu/~giorgio/old/cis307s96/readings/precedence.html.

1
1

Related questions