1
1

Fixed the OpenMP barrier for the progress report which had a deadlock

This commit was SVN r22991.
Этот коммит содержится в:
Matthias Jurenz 2010-04-19 14:49:14 +00:00
родитель 8441b4f7e0
Коммит 1ae62f6fb6

Просмотреть файл

@ -588,9 +588,14 @@ int main( int argc, const char** argv )
}
}
if(status && ready == false) {
if ( status ) {
# ifdef _OPENMP
# pragma omp barrier
# endif
}
if ( status && ready == false ) {
# ifdef _OPENMP
# pragma omp single nowait
# endif
{