Admin Production ni-theme
Current Publication

private

LabWindows/CVI

private Clause

Specifies that one or more variables is private to the thread.

Format

private(list)

Example

int dequeue(float *a);
void work(int i, float *a);

void a13(float *x, float *y)
{
   int ix_next, iy_next;

   #pragma omp parallel shared(x, y) private(ix_next, iy_next)
   {
      #pragma omp critical (xaxis)
         ix_next = dequeue(x);
      work(ix_next, x);

      #pragma omp critical (yaxis)
         iy_next = dequeue(y);
      work(iy_next, y);
   }
}