Commit 8401f06e authored by Peter Eisentraut's avatar Peter Eisentraut

Treat __s390x__ the same as __s390__. (taken from RPM patch set)

parent 2df4087a
......@@ -33,7 +33,7 @@ typedef unsigned int slock_t;
#define HAS_TEST_AND_SET
#elif defined(__s390__)
#elif defined(__s390__) || defined(__s390x__)
typedef unsigned int slock_t;
#define HAS_TEST_AND_SET
......
......@@ -9,7 +9,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.93 2001/05/24 15:53:34 momjian Exp $
* $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.94 2001/09/24 20:10:44 petere Exp $
*
*-------------------------------------------------------------------------
*/
......@@ -162,7 +162,7 @@ tas(volatile slock_t *lock)
#endif /* __arm__ */
#if defined(__s390__)
#if defined(__s390__) || defined(__s390x__)
/*
* S/390 Linux
*/
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment