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);
}
  

请参见

参考

OpenMP 指令