pthread_mutexattr_setpshared (3) Linux Manual Page
pthread_mutexattr_getpshared, pthread_mutexattr_setpshared – get/set process-shared mutex attribute Synopsis #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. Description 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…
