source: CIVL/examples/omp/dataracebench-1.3.2/micro-benchmarks/DRB128-tasking-threadprivate2-orig-no.c

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: 948 bytes
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 * The scheduling constraints prohibit a thread in the team from executing
12 * a new task that modifies tp while another such task region tied to
13 * the same thread is suspended. Therefore, the value written will
14 * persist across the task scheduling point.
15 * No Data Race at var@35:7
16 */
17
18
19#include <omp.h>
20#include <stdio.h>
21
22int tp;
23#pragma omp threadprivate(tp)
24int var;
25
26int main(){
27 #pragma omp task
28 {
29 #pragma omp task
30 {
31 tp = 1;
32 #pragma omp task
33 {
34 }
35 var = tp;
36 }
37 }
38 return 0;
39}
Note: See TracBrowser for help on using the repository browser.