source: CIVL/examples/omp/sharedVar3.cvl@ 143351b

1.23 2.0 main test-branch
Last change on this file since 143351b was 170ff7f, checked in by Ziqing Luo <ziqing@…>, 8 years ago

Merged Yihao's fix for ticket 888

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@4869 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 100 bytes
Line 
1int x = 0;
2
3void f() {
4 x = 3;
5}
6
7int main(){
8 #pragma omp parallel shared(x)
9 {
10 f();
11 }
12}
Note: See TracBrowser for help on using the repository browser.