blob: d72988dcc54b720eecb5d305f1af3b76b70bf372 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <stdlib.h>
#include <omp.h>
int
main ()
{
#pragma omp teams thread_limit (1)
#pragma omp parallel if(0)
if (omp_get_thread_limit () != 1)
abort ();
return 0;
}
|