1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

Sparc lock fix for Linux/netbsd.

This commit is contained in:
Bruce Momjian 1997-10-02 18:32:58 +00:00
parent 4b74ca2d57
commit d663f1c839

View File

@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.8 1997/09/30 16:21:42 momjian Exp $
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.9 1997/10/02 18:32:58 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@ -351,7 +351,7 @@ tas_dummy()
__asm__("ldstub [%1], %0" \
: "=&r"(_res) \
: "r"(lock)); \
} while (!_res != 0); \
} while (_res != 0); \
} while (0)
#define S_UNLOCK(lock) (*(lock) = 0)