critical
Указывает, что код был выполнен только в одном потоке одновременно.
#pragma omp critical [(name)]
{
code_block
}
Заметки
Здесь:
- (name(необязательно))
Имя для идентификации критический код. Видит, что имя должно быть заключено в скобки.
Заметки
Критические директива не поддерживает никаких предложений 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);
}