source:
CIVL/mods/dev.civl.com/examples/omp/sharedVar3.cvl@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 100 bytes | |
| Rev | Line | |
|---|---|---|
| [170ff7f] | 1 | int x = 0; |
| 2 | ||
| 3 | void f() { | |
| 4 | x = 3; | |
| 5 | } | |
| 6 | ||
| 7 | int main(){ | |
| 8 | #pragma omp parallel shared(x) | |
| 9 | { | |
| 10 | f(); | |
| 11 | } | |
| 12 | } |
Note:
See TracBrowser
for help on using the repository browser.
