OpenMP-Examples/sources/Example_threadprivate.5c.c
2015-01-13 11:38:24 -08:00

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)
};