aboutsummaryrefslogtreecommitdiff
path: root/src/backend/storage/buffer/s_lock.c
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-04-27 14:46:51 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-04-27 14:46:51 +0000
commit1af6b56427fa5afbca88849c428bc872d60ad941 (patch)
tree35a932fdbf42f5e912d7aef7927b4ec9aeeadd57 /src/backend/storage/buffer/s_lock.c
parent718430ea4019db3bcb36b51b44e08a1b2163eae8 (diff)
downloadpostgresql-1af6b56427fa5afbca88849c428bc872d60ad941.tar.gz
postgresql-1af6b56427fa5afbca88849c428bc872d60ad941.zip
From: Ryan Kirkpatrick <rkirkpat@nag.cs.colorado.edu>
Ok, I have finally gotten all of the defines for Dec/Alpha and Linux/Alpha sorted out as Marc asked. There is no longer any need for '-Dalpha' or '-Dlinuxalpha' in either the Dec/Alpha or the Linux/Alpha template files (./src/template/{alpha,linuxalpha}). I have replaced every instance of 'alpha' or '__alpha__' with '__alpha', as that appears to be the common symbol between C compilers on both operating systems (RH4.2 & DecUnix 4.0b) for alpha.
Diffstat (limited to 'src/backend/storage/buffer/s_lock.c')
-rw-r--r--src/backend/storage/buffer/s_lock.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/storage/buffer/s_lock.c b/src/backend/storage/buffer/s_lock.c
index 1a194eb4a41..a3f63735643 100644
--- a/src/backend/storage/buffer/s_lock.c
+++ b/src/backend/storage/buffer/s_lock.c
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.3 1998/02/26 04:35:28 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/storage/buffer/Attic/s_lock.c,v 1.4 1998/04/27 14:43:15 scrappy Exp $
*
*-------------------------------------------------------------------------
*/
@@ -37,7 +37,7 @@
#include "storage/ipc.h"
#include "storage/s_lock.h"
-#if defined(__alpha__) && defined(linux)
+#if defined(__alpha) && defined(linux)
void
S_LOCK(slock_t *lock)
{