Index: vendor/core/libutils/include/utils/Mutex.h
--- vendor/core/libutils/include/utils/Mutex.h.orig
+++ vendor/core/libutils/include/utils/Mutex.h
@@ -169,7 +169,9 @@ inline Mutex::Mutex(int type, __attribute__((unused)) 
     if (type == SHARED) {
         pthread_mutexattr_t attr;
         pthread_mutexattr_init(&attr);
+#ifndef __OpenBSD__
         pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED);
+#endif
         pthread_mutex_init(&mMutex, &attr);
         pthread_mutexattr_destroy(&attr);
     } else {
