We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7690dde commit 9019264Copy full SHA for 9019264
src/include/storage/s_lock.h
@@ -796,7 +796,7 @@ typedef unsigned int slock_t;
796
/* On IA64, it's a win to use a non-locking test before the xchg proper */
797
#define TAS_SPIN(lock) (*(lock) ? 1 : TAS(lock))
798
#define S_UNLOCK(lock) \
799
- do { _Asm_sched_fence(); (*(lock)) = 0); } while (0)
+ do { _Asm_sched_fence(); (*(lock)) = 0; } while (0)
800
801
#endif /* HPUX on IA64, non gcc */
802
0 commit comments