_mutex             56 oshmem/runtime/runtime.h #   define SHMEM_MUTEX_INIT(_mutex)                                     \
_mutex             59 oshmem/runtime/runtime.h             pthread_mutex_init(&_mutex, NULL);                          \
_mutex             61 oshmem/runtime/runtime.h #   define SHMEM_MUTEX_DESTROY(_mutex)                                  \
_mutex             64 oshmem/runtime/runtime.h             pthread_mutex_destroy(&_mutex);                             \
_mutex             66 oshmem/runtime/runtime.h #   define SHMEM_MUTEX_LOCK(_mutex)                                     \
_mutex             69 oshmem/runtime/runtime.h             pthread_mutex_lock(&_mutex);                                \
_mutex             71 oshmem/runtime/runtime.h #   define SHMEM_MUTEX_UNLOCK(_mutex)                                   \
_mutex             74 oshmem/runtime/runtime.h             pthread_mutex_unlock(&_mutex);                              \