omp_test_nest_lock
– Test and set nested lock if availableomp_init_nest_lock
. Contrary to omp_set_nest_lock
,
omp_test_nest_lock
does not block if the lock is not available.
If the lock is already held by the current thread, the new nesting count
is returned. Otherwise, the return value equals zero.
Prototype: | int omp_test_nest_lock(omp_nest_lock_t *lock);
|
Interface: | logical function omp_test_nest_lock(lock)
|
integer(omp_nest_lock_kind), intent(inout) :: lock
|