Skip to content

Commit

Permalink
Finish #674.
Browse files Browse the repository at this point in the history
Signed-off-by: George Bosilca <gbosilca@nvidia.com>
  • Loading branch information
bosilca committed Sep 17, 2024
1 parent 1e09883 commit 0047014
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion parsec/class/list_item.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
* Copyright (c) 2010-2019 The University of Tennessee and The University
* of Tennessee Research Foundation. All rights
* reserved.
* Copyright (c) 2024 NVIDIA Corporation. All rights reserved.
*/

#ifndef PARSEC_LIST_ITEM_H_HAS_BEEN_INCLUDED
Expand Down Expand Up @@ -109,7 +110,7 @@ parsec_list_item_ring( parsec_list_item_t* first, parsec_list_item_t* last )
parsec_list_item_t* item = first;
do {
assert( item->belong_to == first->belong_to );
item->refcount--;
item->refcount = item->refcount - 1;
assert( 0 == item->refcount );
item = (parsec_list_item_t*)item->list_next;
} while(item != first);
Expand Down

0 comments on commit 0047014

Please sign in to comment.