Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

pthread_rwlockattr_init(3) [mojave man page]

PTHREAD_RWLOCKATTR_INIT(3)				   BSD Library Functions Manual 				PTHREAD_RWLOCKATTR_INIT(3)

NAME
pthread_rwlockattr_init -- initialize a read/write lock SYNOPSIS
#include <pthread.h> int pthread_rwlockattr_init(pthread_rwlockattr_t *attr); DESCRIPTION
The pthread_rwlockattr_init() function is used to initialize a read/write lock attributes object. RETURN VALUES
If successful, the pthread_rwlockattr_init() function will return zero. Otherwise an error number will be returned to indicate the error. ERRORS
The pthread_rwlockattr_init() function will fail if: [ENOMEM] Insufficient memory exists to initialize the attribute object. SEE ALSO
pthread_rwlock_init(3), pthread_rwlockattr_destroy(3), pthread_rwlockattr_getpshared(3), pthread_rwlockattr_setpshared(3) STANDARDS
The pthread_rwlockattr_init() function is expected to conform to Version 2 of the Single UNIX Specification (``SUSv2''). HISTORY
The pthread_rwlockattr_init() function first appeared in FreeBSD 3.0. BSD
August 4, 1998 BSD

Check Out this Related Man Page

PTHREAD_RWLOCKATTR(3)					   BSD Library Functions Manual 				     PTHREAD_RWLOCKATTR(3)

NAME
pthread_rwlockattr_init, pthread_rwlockattr_destroy -- initialize or destroy read/write lock attributes LIBRARY
POSIX Threads Library (libpthread, -lpthread) SYNOPSIS
#include <pthread.h> int pthread_rwlockattr_init(pthread_rwlockattr_t *attr); int pthread_rwlockattr_destroy(pthread_rwlockattr_t *attr); DESCRIPTION
The pthread_rwlockattr_init() function is used to initialize a read/write lock attributes object. The pthread_rwlockattr_destroy() function is used to destroy a read/write lock attribute object previously created with pthread_rwlockattr_init(). RETURN VALUES
If successful, the pthread_rwlockattr_init() and pthread_rwlockattr_destroy() functions return zero. Otherwise an error number will be returned to indicate the error. ERRORS
pthread_rwlockattr_init() shall fail if: [ENOMEM] Insufficient memory exists to initialize the read/write lock attributes object. pthread_rwlockattr_init() and pthread_rwlockattr_destroy() may fail if: [EINVAL] The value specified by attr is invalid. SEE ALSO
pthread_rwlock_init(3) STANDARDS
Both functions conform to IEEE Std 1003.1-2001 (``POSIX.1''). BSD
July 9, 2010 BSD
Man Page