DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH PRINT BOOK
 

rw_rdlock(3synch)


rw_rdlock -- acquire a reader-writer lock in read mode.

Synopsis

   cc [options] -Kthread file
   

#include <synch.h>

int rw_rdlock(rwlock_t *lock);

Description

rw_rdlock acquires the reader-writer lock pointed to by lock in read mode.

A reader-writer lock can be held by any number of readers at one time, but only one writer at a time can hold the lock. Once a writer has requested the lock with rw_wrlock, all subsequent requests for the lock in either read or write mode are queued.

If the lock is free, or is currently held by another reader and there are no writers waiting, rw_rdlock increments the reader count and the caller proceeds. If a writer holds the lock or if any writer is waiting for the lock, the caller blocks to wait for the lock.

lock must previously have been initialized (see rwlock_init(3synch)).

From the point of view of the caller, this function is atomic: even if interrupted by a signal or forkall (see fork(2)), rw_rdlock will not return until it holds the lock. As a consequence, if rw_rdlock is interrupted, an error indication, such as EINTR, is never returned to the user.

Parameters


lock
pointer to the reader-writer lock to be acquired

Usage

For consistency, locks acquired with rw_rdlock should be released with rw_unlock.

Return values

rw_rdlock returns zero for success and an error number for failure.

Errors

If any of the following conditions is detected, rw_rdlock returns the corresponding value:

EINVAL
invalid argument specified

ENOMEM
insufficient memory

Warnings

If a thread exits while holding a reader-writer lock, the lock will not be unlocked, and other threads waiting for the lock will wait forever. Similarly, if a process exits while holding a USYNC_PROCESS reader-writer lock, the lock will not be unlocked, and other processes waiting for the reader-writer lock will wait forever.

References

fork(2), Intro(3synch), rwlock(3synch), rwlock_destroy(3synch), rwlock_init(3synch), rw_tryrdlock(3synch), rw_trywrlock(3synch), rw_unlock(3synch), rw_wrlock(3synch)
© 2004 The SCO Group, Inc. All rights reserved.
UnixWare 7 Release 7.1.4 - 25 April 2004