diff options
| author | Bruce Momjian | 2003-06-24 23:19:11 +0000 |
|---|---|---|
| committer | Bruce Momjian | 2003-06-24 23:19:11 +0000 |
| commit | 7cb4278e82f1fc18530f4ec0b2c5435b88fa7003 (patch) | |
| tree | 62922712fb066c9c390d5a35352da290ab6ef083 /src/include | |
| parent | 46bf65148002f03a4775e6fbb2c4f758184062c5 (diff) | |
Small patch to link to the proper place in the "runtime" file,
and to add the "schemaname" column to the description of the
pg_stats view.
Greg Sabino Mullane
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/storage/s_lock.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/storage/s_lock.h b/src/include/storage/s_lock.h index b26c63029ad..a37ea9b9ae2 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -63,7 +63,7 @@ * Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: s_lock.h,v 1.107 2003/06/05 16:07:25 petere Exp $ + * $Id: s_lock.h,v 1.108 2003/06/24 23:19:11 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -94,7 +94,7 @@ */ -#if defined(__i386__) +#if defined(__i386__) || defined(__x86_64__) #define TAS(lock) tas(lock) static __inline__ int @@ -110,7 +110,7 @@ tas(volatile slock_t *lock) return (int) _res; } -#endif /* __i386__ */ +#endif /* __i386__ || __x86_64__ */ #ifdef __ia64__ |
