main
|
Last change
on this file was ea777aa, checked in by Alex Wilton <awilton@…>, 3 years ago |
|
Moved examples, include, build_default.properties, common.xml, and README out from dev.civl.com into the root of the repo.
git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@5704 fb995dde-84ed-4084-dfe6-e5aef3e2452c
|
-
Property mode
set to
100755
|
|
File size:
1.0 KB
|
| Line | |
|---|
| 1 | /*
|
|---|
| 2 | !!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
|
|---|
| 3 | !!! Copyright (c) 2017-20, Lawrence Livermore National Security, LLC
|
|---|
| 4 | !!! and DataRaceBench project contributors. See the DataRaceBench/COPYRIGHT file for details.
|
|---|
| 5 | !!!
|
|---|
| 6 | !!! SPDX-License-Identifier: (BSD-3-Clause)
|
|---|
| 7 | !!!~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~!!!
|
|---|
| 8 | */
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 | /*
|
|---|
| 12 | This example is derived from an example by Simone Atzeni, NVIDIA.
|
|---|
| 13 |
|
|---|
| 14 | Description: Race on variable init if used master construct. The variable is written by the
|
|---|
| 15 | master thread and concurrently read by the others.
|
|---|
| 16 |
|
|---|
| 17 | Solution: master construct does not have an implicit barrier better
|
|---|
| 18 | use single at line 31. Fixed version for DRB124-master-orig-yes.c. No data race.
|
|---|
| 19 | */
|
|---|
| 20 |
|
|---|
| 21 | #include <stdio.h>
|
|---|
| 22 | #include <stdlib.h>
|
|---|
| 23 | #include <stdio.h>
|
|---|
| 24 |
|
|---|
| 25 | int main (int argc, char **argv)
|
|---|
| 26 | {
|
|---|
| 27 | int init, local;
|
|---|
| 28 |
|
|---|
| 29 | #pragma omp parallel shared(init) private(local)
|
|---|
| 30 | {
|
|---|
| 31 | #pragma omp single
|
|---|
| 32 | {
|
|---|
| 33 | init = 10;
|
|---|
| 34 | }
|
|---|
| 35 | local = init;
|
|---|
| 36 | }
|
|---|
| 37 |
|
|---|
| 38 | return 0;
|
|---|
| 39 | }
|
|---|
| 40 |
|
|---|
| 41 |
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.