From: Andres Freund Date: Tue, 9 Sep 2014 11:57:38 +0000 (+0200) Subject: Fix typo in solaris spinlock fix. X-Git-Tag: REL9_4_BETA3~50 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=21dcc48dc7ec48bf7b2a40c619e1c96ca4d2477c;p=postgresql Fix typo in solaris spinlock fix. 07968dbfaad03 missed part of the S_UNLOCK define when building for sparcv8+. --- diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 7ad903860d..48583f8fc2 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -457,6 +457,7 @@ do \ * #LoadStore (RMO) | #StoreStore (RMO, PSO) together are the appropriate * release barrier for sparcv8+ upwards. */ +#define S_UNLOCK(lock) \ do \ { \ __asm__ __volatile__ ("membar #LoadStore | #StoreStore \n":::"memory"); \