1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100
|
#include <string.h>
#include "log.h"
#include "pshared.h"
int cond_init_pshared(pthread_cond_t *cond)
{
pthread_condattr_t cattr;
int ret;
ret = pthread_condattr_init(&cattr);
if (ret) {
log_err("pthread_condattr_init: %s\n", strerror(ret));
return ret;
}
#ifdef CONFIG_PSHARED
ret = pthread_condattr_setpshared(&cattr, PTHREAD_PROCESS_SHARED);
if (ret) {
log_err("pthread_condattr_setpshared: %s\n", strerror(ret));
return ret;
}
#endif
#ifdef CONFIG_PTHREAD_CONDATTR_SETCLOCK
ret = pthread_condattr_setclock(&cattr, CLOCK_MONOTONIC);
if (ret) {
log_err("pthread_condattr_setclock: %s\n", strerror(ret));
return ret;
}
#endif
ret = pthread_cond_init(cond, &cattr);
if (ret) {
log_err("pthread_cond_init: %s\n", strerror(ret));
return ret;
}
return 0;
}
/*
* 'type' must be a mutex type, e.g. PTHREAD_MUTEX_NORMAL,
* PTHREAD_MUTEX_ERRORCHECK, PTHREAD_MUTEX_RECURSIVE or PTHREAD_MUTEX_DEFAULT.
*/
int mutex_init_pshared_with_type(pthread_mutex_t *mutex, int type)
{
pthread_mutexattr_t mattr;
int ret;
ret = pthread_mutexattr_init(&mattr);
if (ret) {
log_err("pthread_mutexattr_init: %s\n", strerror(ret));
return ret;
}
/*
* Not all platforms support process shared mutexes (NetBSD/OpenBSD)
*/
#ifdef CONFIG_PSHARED
ret = pthread_mutexattr_setpshared(&mattr, PTHREAD_PROCESS_SHARED);
if (ret) {
log_err("pthread_mutexattr_setpshared: %s\n", strerror(ret));
return ret;
}
#endif
ret = pthread_mutexattr_settype(&mattr, type);
if (ret) {
log_err("pthread_mutexattr_settype: %s\n", strerror(ret));
return ret;
}
ret = pthread_mutex_init(mutex, &mattr);
if (ret) {
log_err("pthread_mutex_init: %s\n", strerror(ret));
return ret;
}
pthread_mutexattr_destroy(&mattr);
return 0;
}
int mutex_init_pshared(pthread_mutex_t *mutex)
{
return mutex_init_pshared_with_type(mutex, PTHREAD_MUTEX_DEFAULT);
}
int mutex_cond_init_pshared(pthread_mutex_t *mutex, pthread_cond_t *cond)
{
int ret;
ret = mutex_init_pshared(mutex);
if (ret)
return ret;
ret = cond_init_pshared(cond);
if (ret)
return ret;
return 0;
}
|