omp_test_nest_lock
Nestable 잠금을 설정 하려고 시도 하지만 스레드 실행을 차단 하지 않습니다.
int omp_test_nest_lock(
omp_nest_lock_t *lock
);
설명
다음은 각 매개 변수에 대한 설명입니다.
- lock
형식의 변수에 omp_nest_lock_t 로 초기화 된 omp_init_nest_lock.
설명
자세한 내용은 3.2.5 omp_test_lock 및 omp_test_nest_lock 함수를 참조하십시오.
예제
// 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);
}