An official website of the United States government

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.


Home

OpenMP Directives: Data Scope Attribute Clauses: FIRSTPRIVATE Clause

Purpose:

The FIRSTPRIVATE clause combines the behavior of the PRIVATE clause with automatic initialization of the variables in its list.

Format:

Fortran

FIRSTPRIVATE (list)

C/C++

firstprivate (list)

Notes:

Listed variables are initialized according to the value of their original objects prior to entry into the parallel or work-sharing construct.