Merge pull request #9528 from kjbracey-arm/atomic_load_store

Second barrier for core_util_atomic_flag_clear
pull/9541/head
Martin Kojtal 2019-01-30 10:07:33 +01:00 committed by GitHub
commit c7998aa62c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -142,6 +142,7 @@ MBED_FORCEINLINE void core_util_atomic_flag_clear(volatile core_util_atomic_flag
{
MBED_BARRIER();
flagPtr->_flag = false;
MBED_BARRIER();
}
/**