omp_test_nest_lock
Los intentos de establecer un bloqueo encajable pero no bloquean la ejecución de subprocesos.
int omp_test_nest_lock(
omp_nest_lock_t *lock
);
Comentarios
donde
- lock
Una variable de omp_nest_lock_t cuyas se inicializó con omp_init_nest_lock.
Comentarios
Para obtener más información, vea 3.2.5 funciones de omp_test_lock y de omp_test_nest_lock.
Ejemplo
// omp_test_nest_lock.cpp
// compile with: /openmp
#include <stdio.h>
#include <omp.h>
omp_nest_lock_t nestable_lock;
int main() {
omp_init_nest_lock(&nestable_lock);
#pragma omp parallel num_threads(4)
{
int tid = omp_get_thread_num();
while (!omp_test_nest_lock(&nestable_lock))
printf_s("Thread %d - failed to acquire nestable_lock\n",
tid);
printf_s("Thread %d - acquired nestable_lock\n", tid);
if (omp_test_nest_lock(&nestable_lock)) {
printf_s("Thread %d - acquired nestable_lock again\n",
tid);
printf_s("Thread %d - released nestable_lock\n",
tid);
omp_unset_nest_lock(&nestable_lock);
}
printf_s("Thread %d - released nestable_lock\n", tid);
omp_unset_nest_lock(&nestable_lock);
}
omp_destroy_nest_lock(&nestable_lock);
}