2e384a3b65
A few uninitialized common symbols are remaining (generated by flex) : * orte/mca/rmaps/rank_file/rmaps_rank_file_lex.c: orte_rmaps_rank_file_leng * orte/mca/rmaps/rank_file/rmaps_rank_file_lex.c: orte_rmaps_rank_file_text * orte/util/hostfile/hostfile_lex.c: orte_util_hostfile_leng * orte/util/hostfile/hostfile_lex.c: orte_util_hostfile_text
47 строки
1.5 KiB
C
47 строки
1.5 KiB
C
/*
|
|
* 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) 2015 Research Organization for Information Science
|
|
* and Technology (RIST). All rights reserved.
|
|
* $COPYRIGHT$
|
|
*
|
|
* Additional copyrights may follow
|
|
*
|
|
* $HEADER$
|
|
*
|
|
*/
|
|
|
|
#include "orte_config.h"
|
|
#include "orte/constants.h"
|
|
|
|
#include "orte/runtime/orte_locks.h"
|
|
|
|
/* for everyone */
|
|
opal_atomic_lock_t orte_finalize_lock = {{0}};
|
|
|
|
/* for HNPs */
|
|
opal_atomic_lock_t orte_abort_inprogress_lock = {{0}};
|
|
opal_atomic_lock_t orte_jobs_complete_lock = {{0}};
|
|
opal_atomic_lock_t orte_quit_lock = {{0}};
|
|
|
|
int orte_locks_init(void)
|
|
{
|
|
/* for everyone */
|
|
opal_atomic_init(&orte_finalize_lock, OPAL_ATOMIC_UNLOCKED);
|
|
|
|
/* for HNPs */
|
|
opal_atomic_init(&orte_abort_inprogress_lock, OPAL_ATOMIC_UNLOCKED);
|
|
opal_atomic_init(&orte_jobs_complete_lock, OPAL_ATOMIC_UNLOCKED);
|
|
opal_atomic_init(&orte_quit_lock, OPAL_ATOMIC_UNLOCKED);
|
|
|
|
return ORTE_SUCCESS;
|
|
}
|