#pragma omp master

Description

The omp master directive identifies a section of code that must be run only by the master thread.

Syntax

#pragma omp master
   statement_block

Notes

Threads other than the master thread will not execute the statement block associated with this construct.

No implied barrier exists on either entry to or exit from the master section.

Related References

Pragmas to Control Parallel Processing IBM Copyright 2003