次の方法で共有


critical

コードが 1 台のスレッドは一度に実行されることを指定します。

#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 ディレクティブ