source:
CIVL/mods/dev.civl.com/examples/omp/ptr_share.c@
cb4d4f4
| Last change on this file since cb4d4f4 was aad342c, checked in by , 3 years ago | |
|---|---|
|
|
| File size: 82 bytes | |
| Rev | Line | |
|---|---|---|
| [c5c097d] | 1 | |
| 2 | int 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.
