From f48be9d73b4472570d28bf381d84e40cf65694c8 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 18 Nov 2018 03:59:39 -0800 Subject: Remove the pointer-specific atomic exchange macros --- OpenAL32/alState.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'OpenAL32/alState.cpp') diff --git a/OpenAL32/alState.cpp b/OpenAL32/alState.cpp index 8ff2c2c3..85789c5e 100644 --- a/OpenAL32/alState.cpp +++ b/OpenAL32/alState.cpp @@ -773,7 +773,7 @@ void UpdateContextProps(ALCcontext *context) struct ALcontextProps *next; do { next = ATOMIC_LOAD(&props->next, almemory_order_relaxed); - } while(ATOMIC_COMPARE_EXCHANGE_PTR_WEAK(&context->FreeContextProps, &props, next, + } while(ATOMIC_COMPARE_EXCHANGE_WEAK(&context->FreeContextProps, &props, next, almemory_order_seq_cst, almemory_order_acquire) == 0); } @@ -788,8 +788,7 @@ void UpdateContextProps(ALCcontext *context) props->mDistanceModel = context->mDistanceModel; /* Set the new container for updating internal parameters. */ - props = static_cast(ATOMIC_EXCHANGE_PTR(&context->Update, props, - almemory_order_acq_rel)); + props = ATOMIC_EXCHANGE(&context->Update, props, almemory_order_acq_rel); if(props) { /* If there was an unused update container, put it back in the -- cgit v1.2.3