Next: , Previous: omp_init_nest_lock, Up: Runtime Library Routines


2.26 omp_set_nest_lock – Wait for and set nested lock

Description:
Before setting a nested lock, the lock variable must be initialized by omp_init_nest_lock. The calling thread is blocked until the lock is available. If the lock is already held by the current thread, the nesting count for the lock in incremented.
C/C++:

Prototype: void omp_set_nest_lock(omp_nest_lock_t *lock);

Fortran:

Interface: subroutine omp_set_nest_lock(lock)
integer(omp_nest_lock_kind), intent(inout) :: lock

See also:
omp_init_nest_lock, omp_unset_nest_lock
Reference:
OpenMP specifications v3.0, section 3.3.3.