OMP_TEST_LOCK

OMP_TEST_NEST_LOCK

Purpose:

This subroutine attempts to set a lock, but does not block if the lock is unavailable.

Format:

Fortran

SUBROUTINE OMP_TEST_LOCK(var)
SUBROUTINE OMP_TEST_NEST_LOCK(var)

C/C++

#include <omp.h>
int omp_test_lock(omp_lock_t *lock)
int omp_test_nest__lock(omp_nest_lock_t *lock)

Notes & Restrictions: