From: Andres Freund Date: Tue, 9 Sep 2014 11:57:38 +0000 (+0200) Subject: Fix typo in solaris spinlock fix. X-Git-Tag: REL9_5_ALPHA1~1504 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=50881036b17dc07cc61535d5bf27c56abaa4fbbb;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 39917a41f2..06dc963f87 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -415,6 +415,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"); \