Back to home page

OSCL-LXR

 
 

    


0001 cat <<EOF
0002 static __always_inline ${ret}
0003 arch_${atomic}_${pfx}${name}${sfx}(${params})
0004 {
0005         ${ret} ret;
0006         __atomic_pre_full_fence();
0007         ret = arch_${atomic}_${pfx}${name}${sfx}_relaxed(${args});
0008         __atomic_post_full_fence();
0009         return ret;
0010 }
0011 EOF