[ Previous | Next | Contents | Home | Search ]
AIX Version 4.3 Kernel and Subsystems Technical Reference, Volume 1

lock_clear_recursive Kernel Service

Purpose

Prevents a complex lock from being acquired recursively.

Syntax

#include <sys/lock_def.h>
void lock_clear_recursive (lock_addr)
complex_lock_t lock_addr;

Parameter

lock_addr Specifies the address of the lock word which is no longer to be acquired recursively.

Description

The lock_clear_recursive kernel service prevents the specified complex lock from being acquired recursively. The lock must have been made recursive with the lock_set_recursive kernel service. The calling thread must hold the specified complex lock in write-exclusive mode.

Execution Environment

The lock_clear_recursive kernel service can be called from the process environment only.

Return Values

The lock_clear_recursive kernel service has no return values.

Implementation Specifics

The lock_clear_recursive kernel service is part of the Base Operating System (BOS) Runtime.

Related Information

The lock_init kernel service, lock_done kernel service, lock_read kernel service, lock_read_to_write kernel service, lock_write kernel service, lock_set_recursive kernel service.

Understanding Locking and Locking Kernel Services in AIX Kernel Extensions and Device Support Programming Concepts


[ Previous | Next | Contents | Home | Search ]