mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-09 00:05:22 +00:00
21 lines
343 B
C
21 lines
343 B
C
|
extern void abort (void);
|
||
|
|
||
|
main()
|
||
|
{
|
||
|
int i, a;
|
||
|
|
||
|
a = 30;
|
||
|
|
||
|
#pragma omp parallel for firstprivate (a) lastprivate (a) \
|
||
|
num_threads (2) schedule(static)
|
||
|
for (i = 0; i < 10; i++)
|
||
|
a = a + i;
|
||
|
|
||
|
/* The thread that owns the last iteration will have computed
|
||
|
30 + 5 + 6 + 7 + 8 + 9 = 65. */
|
||
|
if (a != 65)
|
||
|
abort ();
|
||
|
|
||
|
return 0;
|
||
|
}
|