コードが 1 度に 1 つのスレッドしか実行しないように指定します。
#pragma omp critical [(name)]
{
code_block
}
解説
指定項目
- (name) (省略可能)
クリティカル コードを識別する名前。 名前はかっこで囲まれている必要があります。
解説
critical ディレクティブは OpenMP 句をサポートしません。
詳細については、「2.6.2 critical コンストラクト」を参照してください。
使用例
// omp_critical.cpp
// compile with: /openmp
#include <omp.h>
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
int main()
{
int i;
int max;
int a[SIZE];
for (i = 0; i < SIZE; i++)
{
a[i] = rand();
printf_s("%d\n", a[i]);
}
max = a[0];
#pragma omp parallel for num_threads(4)
for (i = 1; i < SIZE; i++)
{
if (a[i] > max)
{
#pragma omp critical
{
// compare a[i] and max again because max
// could have been changed by another thread after
// the comparison outside the critical section
if (a[i] > max)
max = a[i];
}
}
}
printf_s("max = %d\n", max);
}