Sign in
gnu
/
gcc
/
4212a6a3e44f870412d9025eeb323fd4f50a61da
/
.
/
libgomp
/
testsuite
/
libgomp.c
/
thread-limit-5.c
blob: d3d22b1e1a622e75c7dad39f79a254382d719622 [
file
] [
log
] [
blame
]
#include
<stdlib.h>
#include
<omp.h>
int
main
()
{
#pragma
omp teams thread_limit
(
1
)
if
(
omp_get_thread_limit
()
!=
1
)
abort
();
return
0
;
}