Changeset 2ad5e1d5


Ignore:
Timestamp:
Oct 23, 2023, 8:58:42 AM (6 months ago)
Author:
caparson <caparson@…>
Branches:
master
Children:
7b84d3e
Parents:
8df19af
Message:

added missing semicolons

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/locks.hfa

    r8df19af r2ad5e1d5  
    184184
    185185        #if defined(__ARM_ARCH)
    186         __asm__ __volatile__ ( "DMB ISH" ::: )
     186        __asm__ __volatile__ ( "DMB ISH" ::: );
    187187        #endif
    188188
     
    192192       
    193193        #if defined(__ARM_ARCH)
    194         __asm__ __volatile__ ( "DMB ISH" ::: )
     194        __asm__ __volatile__ ( "DMB ISH" ::: );
    195195        #endif
    196196
     
    198198
    199199        #if defined(__ARM_ARCH)
    200         __asm__ __volatile__ ( "DMB ISH" ::: )
     200        __asm__ __volatile__ ( "DMB ISH" ::: );
    201201        #endif
    202202}
     
    204204static inline void unlock(mcs_spin_lock & l, mcs_spin_node & n) {
    205205        #if defined(__ARM_ARCH)
    206         __asm__ __volatile__ ( "DMB ISH" ::: )
     206        __asm__ __volatile__ ( "DMB ISH" ::: );
    207207        #endif
    208208
     
    212212
    213213        #if defined(__ARM_ARCH)
    214         __asm__ __volatile__ ( "DMB ISH" ::: )
     214        __asm__ __volatile__ ( "DMB ISH" ::: );
    215215        #endif
    216216
Note: See TracChangeset for help on using the changeset viewer.