1
1

Merge pull request #5144 from gpaulsen/topic/fix_make_check_opal_fifo

Fixing 'make check' test opal_fifo.
Этот коммит содержится в:
Geoff Paulsen 2018-05-04 16:49:58 -05:00 коммит произвёл GitHub
родитель 4e917b7692 cc9f713d09
Коммит a480e40d61
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

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

@ -2,6 +2,7 @@
/*
* Copyright (c) 2014 Los Alamos National Security, LLC. All rights
* reserved.
* Copyright (c) 2018 IBM Corporation. All rights reserved.
* $COPYRIGHT$
*
* Additional copyrights may follow
@ -103,7 +104,7 @@ static void *thread_test_exhaust (void *arg) {
static bool check_fifo_consistency (opal_fifo_t *fifo, int expected_count)
{
opal_list_item_t *item;
volatile opal_list_item_t *volatile item;
int count;
for (count = 0, item = fifo->opal_fifo_head.data.item ; item != &fifo->opal_fifo_ghost ;