mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-04 05:41:33 +01:00
24 lines
368 B
C
24 lines
368 B
C
/*
|
|
* @@name: copyprivate.3
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: no
|
|
* @@expect: success
|
|
*/
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <omp.h>
|
|
|
|
omp_lock_t *new_lock()
|
|
{
|
|
omp_lock_t *lock_ptr;
|
|
|
|
#pragma omp single copyprivate(lock_ptr)
|
|
{
|
|
lock_ptr = (omp_lock_t *) malloc(sizeof(omp_lock_t));
|
|
omp_init_lock( lock_ptr );
|
|
}
|
|
|
|
return lock_ptr;
|
|
}
|