PTHREAD_MUTEXATTR_GETPSHARED(3) | Linux Programmer's Manual | PTHREAD_MUTEXATTR_GETPSHARED(3) |
pthread_mutexattr_getpshared, pthread_mutexattr_setpshared - get/set process-shared mutex attribute
#include <pthread.h>
int pthread_mutexattr_getpshared(const pthread_mutexattr_t *attr, int *pshared); int pthread_mutexattr_setpshared(pthread_mutexattr_t *attr, int pshared);
Compile and link with -pthread.
These functions get and set the process-shared attribute in a mutex attributes object. This attribute must be appropriately set to ensure correct, efficient operation of a mutex created using this attributes object.
The process-shared attribute can have one of the following values:
pthread_mutexattr_getpshared() places the value of the process-shared attribute of the mutex attributes object referred to by attr in the location pointed to by pshared.
pthread_mutexattr_setpshared() sets the value of the process-shared attribute of the mutex attributes object referred to by attr to the value specified in pshared.
If attr does not refer to an initialized mutex attributes object, the behavior is undefined.
On success, these functions return 0. On error, they return a positive error number.
pthread_mutexattr_setpshared() can fail with the following errors:
POSIX.1-2001, POSIX.1-2008.
This page is part of release 5.10 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
2017-09-13 | Linux |