Skip to content

Commit 6668a3b

Browse files
committed
Remove left over use of OPAL_ATOMIC_RELAXED_STORE
This was a temporary bandaid to fix the C11 sequentially consistent store... Signed-off-by: Joseph Schuchart <schuchart@icl.utk.edu>
1 parent 289da85 commit 6668a3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ompi/mpiext/continue/c/continuation.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ static void ompi_continuation_construct(ompi_continuation_t* cont)
6565
cont->cont_req = NULL;
6666
cont->cont_cb = NULL;
6767
cont->cont_data = NULL;
68-
OPAL_ATOMIC_RELAXED_STORE(&cont->cont_num_active, 0);
68+
cont->cont_num_active = 0;
6969
cont->cont_num_opreqs = 0;
7070
cont->cont_opreqs = NULL;
7171
cont->cont_failed = 0;

0 commit comments

Comments
 (0)