Skip to content

Commit ede3b03

Browse files
author
Henry Jin
committed
Moved History to Appendix, set version number and release date
1 parent 73f791b commit ede3b03

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

Title_Page.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818
\vspace{1.0in}
1919

20-
\textbf{Version 4.0.2rv3 -- February, 2015}
20+
\textbf{Version 4.0.2 -- March, 2015}
2121
\end{center}
2222
\end{adjustwidth}
2323

@@ -39,7 +39,7 @@
3939
\phantom{a}
4040
\emph{This page intentionally left blank}
4141

42-
This working version enacted the following tickets: 180, 295, 299, 342, 381,
43-
and a few other editorial changes.
42+
%This working version enacted the following tickets: 180, 295, 299, 342, 381,
43+
%and a few other editorial changes.
4444
\vfill
4545

openmp-examples.tex

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
\documentclass[10pt,letterpaper,twoside,makeidx,hidelinks]{scrreprt}
4949

5050
% Text to appear in the footer on even-numbered pages:
51-
\newcommand{\footerText}{OpenMP Examples Version 4.0.2 - February 2015}
51+
\newcommand{\footerText}{OpenMP Examples Version 4.0.2 - March 2015}
5252

5353
% Unified style sheet for OpenMP documents:
5454
\input{openmp.sty}
@@ -135,6 +135,11 @@
135135
\input{Examples_array_sections}
136136
\input{Examples_device}
137137
\input{Examples_associate}
138+
139+
\setcounter{chapter}{0} % restart chapter numbering with "letter A"
140+
\renewcommand{\thechapter}{\Alph{chapter}}%
141+
\appendix
142+
138143
\input{History}
139144
\end{document}
140145

openmp.sty

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -399,6 +399,8 @@
399399
% Clickable links in TOC and index:
400400
\usepackage[hyperindex=true,linktocpage=true]{hyperref}
401401
\hypersetup{
402+
bookmarksnumbered = true,
403+
bookmarksopen = false,
402404
colorlinks = true, % Colors links instead of red boxes
403405
urlcolor = blue, % Color for external links
404406
linkcolor = blue % Color for internal links

sources/Example_default_none.1c.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ void default_none(int a) {
2020
a = z[j]; /* O.K. - a is listed in private clause */
2121
/* - z is listed in shared clause */
2222
x = c; /* O.K. - x is threadprivate */
23-
/* - c has const-qualified type and is listed in shared */
23+
/* - c has const-qualified type and
24+
is listed in shared clause */
2425
z[i] = y; /* Error - cannot reference i or y here */
2526

2627
#pragma omp for firstprivate(y)

0 commit comments

Comments
 (0)