mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
13 lines
170 B
C
13 lines
170 B
C
/*
|
|
* @@name: threadprivate.5c
|
|
* @@type: C++
|
|
* @@compilable: no
|
|
* @@linkable: no
|
|
* @@expect: nothing
|
|
*/
|
|
class T {
|
|
public:
|
|
static int i;
|
|
#pragma omp threadprivate(i)
|
|
};
|