1
1

Merge pull request #1800 from thananon/common_sym_fix

Fixed common symbol error in btl/usnic.
Этот коммит содержится в:
Jeff Squyres 2016-06-21 20:11:52 -04:00 коммит произвёл GitHub
родитель 7bd7c0578b afe07cd5d5
Коммит af614afedf
3 изменённых файлов: 5 добавлений и 7 удалений

Просмотреть файл

@ -63,6 +63,10 @@ BEGIN_C_DECLS
* at other times as needed or as tuning dictates.
*/
extern uint64_t opal_btl_usnic_ticks;
/* Lock for MPU_THREAD_MULTIPLE support */
extern opal_recursive_mutex_t btl_usnic_lock;
static inline uint64_t
get_nsec(void)
{

Просмотреть файл

@ -87,7 +87,7 @@
#define OPAL_BTL_USNIC_NUM_COMPLETIONS 500
/* MPI_THREAD_MULTIPLE_SUPPORT */
opal_recursive_mutex_t btl_usnic_lock;
opal_recursive_mutex_t btl_usnic_lock = OPAL_RECURSIVE_MUTEX_STATIC_INIT;
/* RNG buffer definition */
opal_rng_buff_t opal_btl_usnic_rand_buff = {0};

Просмотреть файл

@ -53,12 +53,6 @@
BEGIN_C_DECLS
/*
* MPI_THREAD_MULTIPLE support
*/
extern opal_recursive_mutex_t btl_usnic_lock;
/*
* Forward declarations to avoid include loops
*/