mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
Moved History to Appendix, set version number and release date
This commit is contained in:
parent
73f791b0ac
commit
ede3b032cf
@ -17,7 +17,7 @@
|
||||
|
||||
\vspace{1.0in}
|
||||
|
||||
\textbf{Version 4.0.2rv3 -- February, 2015}
|
||||
\textbf{Version 4.0.2 -- March, 2015}
|
||||
\end{center}
|
||||
\end{adjustwidth}
|
||||
|
||||
@ -39,7 +39,7 @@ permission of OpenMP Architecture Review Board.\end{adjustwidth}
|
||||
\phantom{a}
|
||||
\emph{This page intentionally left blank}
|
||||
|
||||
This working version enacted the following tickets: 180, 295, 299, 342, 381,
|
||||
and a few other editorial changes.
|
||||
%This working version enacted the following tickets: 180, 295, 299, 342, 381,
|
||||
%and a few other editorial changes.
|
||||
\vfill
|
||||
|
||||
|
@ -48,7 +48,7 @@
|
||||
\documentclass[10pt,letterpaper,twoside,makeidx,hidelinks]{scrreprt}
|
||||
|
||||
% Text to appear in the footer on even-numbered pages:
|
||||
\newcommand{\footerText}{OpenMP Examples Version 4.0.2 - February 2015}
|
||||
\newcommand{\footerText}{OpenMP Examples Version 4.0.2 - March 2015}
|
||||
|
||||
% Unified style sheet for OpenMP documents:
|
||||
\input{openmp.sty}
|
||||
@ -135,6 +135,11 @@
|
||||
\input{Examples_array_sections}
|
||||
\input{Examples_device}
|
||||
\input{Examples_associate}
|
||||
|
||||
\setcounter{chapter}{0} % restart chapter numbering with "letter A"
|
||||
\renewcommand{\thechapter}{\Alph{chapter}}%
|
||||
\appendix
|
||||
|
||||
\input{History}
|
||||
\end{document}
|
||||
|
||||
|
@ -399,6 +399,8 @@
|
||||
% Clickable links in TOC and index:
|
||||
\usepackage[hyperindex=true,linktocpage=true]{hyperref}
|
||||
\hypersetup{
|
||||
bookmarksnumbered = true,
|
||||
bookmarksopen = false,
|
||||
colorlinks = true, % Colors links instead of red boxes
|
||||
urlcolor = blue, % Color for external links
|
||||
linkcolor = blue % Color for internal links
|
||||
|
@ -20,7 +20,8 @@ void default_none(int a) {
|
||||
a = z[j]; /* O.K. - a is listed in private clause */
|
||||
/* - z is listed in shared clause */
|
||||
x = c; /* O.K. - x is threadprivate */
|
||||
/* - c has const-qualified type and is listed in shared */
|
||||
/* - c has const-qualified type and
|
||||
is listed in shared clause */
|
||||
z[i] = y; /* Error - cannot reference i or y here */
|
||||
|
||||
#pragma omp for firstprivate(y)
|
||||
|
Loading…
x
Reference in New Issue
Block a user