source: CIVL/examples/omp/ptr_share.c@ afc300c

1.23 2.0 main test-branch
Last change on this file since afc300c was c5c097d, checked in by Stephen Siegel <siegel@…>, 10 years ago

Adding more failing OpenMP examples.

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

  • Property mode set to 100644
File size: 82 bytes
Line 
1
2int main() {
3 int x;
4 int *p = &x;
5#pragma omp parallel shared(x, p)
6 *p=1;
7}
Note: See TracBrowser for help on using the repository browser.