diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-29 15:44:42 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-01-29 15:44:42 +0000 |
commit | 00fc295be05d6b2eb889afc9ac8e085e603f4548 (patch) | |
tree | 2c7df883da57d33169d04e6c86f7a38408c6803f | |
parent | 7798b50c609227d230e783e5cfd218e5bb2aebc4 (diff) | |
download | postgresql-00fc295be05d6b2eb889afc9ac8e085e603f4548.tar.gz postgresql-00fc295be05d6b2eb889afc9ac8e085e603f4548.zip |
Make S/390 TAS spell __inline__ the same way as the other eight GCC
inline routines do.
-rw-r--r-- | src/include/storage/s_lock.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index 721b488c087..be79b51a17b 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -63,7 +63,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: s_lock.h,v 1.96 2001/12/11 02:58:49 tgl Exp $ + * $Id: s_lock.h,v 1.97 2002/01/29 15:44:42 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -156,7 +156,7 @@ tas(volatile slock_t *lock) */ #define TAS(lock) tas(lock) -static inline int +static __inline__ int tas(volatile slock_t *lock) { int _res; |