mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
13 lines
182 B
C++
13 lines
182 B
C++
/*
|
|
* @@name: threadprivate.5
|
|
* @@type: C++
|
|
* @@operation: view
|
|
* @@expect: unspecified
|
|
* @@version: pre_omp_3.0
|
|
*/
|
|
class T {
|
|
public:
|
|
static int i;
|
|
#pragma omp threadprivate(i)
|
|
};
|