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 101 102 103 104 105 106 107 108 109
|
/* -*- Mode: C; c-basic-offset:4 ; indent-tabs-mode:nil -*- */
/*
* Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
* University Research and Technology
* Corporation. All rights reserved.
* Copyright (c) 2004-2005 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
* University of Stuttgart. All rights reserved.
* Copyright (c) 2004-2005 The Regents of the University of California.
* All rights reserved.
* Copyright (c) 2007-2016 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2015 Research Organization for Information Science
* and Technology (RIST). All rights reserved.
* Copyright (c) 2019 Sandia National Laboratories. All rights reserved.
* Copyright (c) 2021 Argonne National Laboratory. All rights reserved.
*
* $COPYRIGHT$
*
* Additional copyrights may follow
*
* $HEADER$
*/
#include "opal_config.h"
#include "opal/constants.h"
#include "opal/mca/threads/mutex.h"
/*
* Wait and see if some upper layer wants to use threads, if support
* exists.
*/
bool opal_uses_threads = false;
static void mca_threads_mutex_constructor(opal_mutex_t *p_mutex)
{
#if OPAL_ENABLE_DEBUG
int ret = opal_thread_internal_mutex_init(&p_mutex->m_lock, false);
assert(0 == ret);
p_mutex->m_lock_debug = 0;
p_mutex->m_lock_file = NULL;
p_mutex->m_lock_line = 0;
#else
opal_thread_internal_mutex_init(&p_mutex->m_lock, false);
#endif
opal_atomic_lock_init(&p_mutex->m_lock_atomic, 0);
}
static void mca_threads_mutex_destructor(opal_mutex_t *p_mutex)
{
opal_thread_internal_mutex_destroy(&p_mutex->m_lock);
}
static void mca_threads_recursive_mutex_constructor(opal_recursive_mutex_t *p_mutex)
{
#if OPAL_ENABLE_DEBUG
int ret = opal_thread_internal_mutex_init(&p_mutex->m_lock, true);
assert(0 == ret);
p_mutex->m_lock_debug = 0;
p_mutex->m_lock_file = NULL;
p_mutex->m_lock_line = 0;
#else
opal_thread_internal_mutex_init(&p_mutex->m_lock, true);
#endif
opal_atomic_lock_init(&p_mutex->m_lock_atomic, 0);
}
static void mca_threads_recursive_mutex_destructor(opal_recursive_mutex_t *p_mutex)
{
opal_thread_internal_mutex_destroy(&p_mutex->m_lock);
}
OBJ_CLASS_INSTANCE(opal_mutex_t, opal_object_t, mca_threads_mutex_constructor,
mca_threads_mutex_destructor);
OBJ_CLASS_INSTANCE(opal_recursive_mutex_t, opal_object_t, mca_threads_recursive_mutex_constructor,
mca_threads_recursive_mutex_destructor);
int opal_cond_init(opal_cond_t *cond)
{
return opal_thread_internal_cond_init(cond);
}
int opal_cond_wait(opal_cond_t *cond, opal_mutex_t *lock)
{
opal_thread_internal_cond_wait(cond, &lock->m_lock);
return OPAL_SUCCESS;
}
int opal_cond_broadcast(opal_cond_t *cond)
{
opal_thread_internal_cond_broadcast(cond);
return OPAL_SUCCESS;
}
int opal_cond_signal(opal_cond_t *cond)
{
opal_thread_internal_cond_signal(cond);
return OPAL_SUCCESS;
}
int opal_cond_destroy(opal_cond_t *cond)
{
opal_thread_internal_cond_destroy(cond);
return OPAL_SUCCESS;
}
|