mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
35 lines
1.1 KiB
TeX
35 lines
1.1 KiB
TeX
%\pagebreak
|
|
\section{\kcode{private} Clause}
|
|
\label{sec:private}
|
|
\index{clauses!private@\kcode{private}}
|
|
\index{private clause@\kcode{private} clause}
|
|
|
|
In the following example, the values of original list items \ucode{i} and \ucode{j}
|
|
are retained on exit from the \kcode{parallel} region, while the private list
|
|
items \ucode{i} and \ucode{j} are modified within the \kcode{parallel} construct.
|
|
|
|
\cexample{private}{1}
|
|
|
|
\fexample{private}{1}
|
|
|
|
\pagebreak
|
|
In the following example, all uses of the variable \ucode{a} within the loop construct
|
|
in the routine \ucode{f} refer to a private list item \ucode{a}, while it is
|
|
unspecified whether references to \ucode{a} in the routine \ucode{g} are to a
|
|
private list item or the original list item.
|
|
|
|
\cexample{private}{2}
|
|
|
|
\fexample{private}{2}
|
|
|
|
The following example demonstrates that a list item that appears in a \kcode{private}
|
|
clause in a \kcode{parallel} construct may also appear in a \kcode{private}
|
|
clause in an enclosed worksharing construct, which results in an additional private
|
|
copy.
|
|
|
|
\cexample{private}{3}
|
|
|
|
\fexample{private}{3}
|
|
|
|
|