OpenMP* Fortran Compiler Directive: Provides an abbreviated way to specify a parallel region containing a single WORKSHARE directive.
Syntax
c$OMP PARALLEL WORKSHARE [clause[[,] clause] ... ]
block
c$OMP END PARALLEL WORKSHARE
c
Is one of the following: C (or c), !, or * (see Syntax Rules for Compiler Directives).
clause
Is any of the clauses accepted by the PARALLEL or WORKSHARE directives.
block
Is a structured block (section) of statements or constructs. You cannot branch into or out of the block (the parallel region).
See Also