diff options
author | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 03:31:01 +0000 |
---|---|---|
committer | Marc G. Fournier <scrappy@hub.org> | 1998-02-05 03:31:01 +0000 |
commit | d85a5420f71e979193619a7b62b3ab269c2db9cd (patch) | |
tree | 8bf3fb6bff6b6758ff5c2019dbbf6cee9c28f812 /src | |
parent | 1637684af4df2ad4310eb722616f4116906114f1 (diff) | |
download | postgresql-d85a5420f71e979193619a7b62b3ab269c2db9cd.tar.gz postgresql-d85a5420f71e979193619a7b62b3ab269c2db9cd.zip |
Port specific, compiler specfied for SGI/Irix5
From: Andrew Martin <martin@biochemistry.ucl.ac.uk>
Diffstat (limited to 'src')
-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 b0c47c56549..68f93a1a045 100644 --- a/src/include/storage/s_lock.h +++ b/src/include/storage/s_lock.h @@ -7,7 +7,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.23 1998/02/03 12:42:52 scrappy Exp $ + * $Header: /cvsroot/pgsql/src/include/storage/s_lock.h,v 1.24 1998/02/05 03:31:01 scrappy Exp $ * *------------------------------------------------------------------------- */ @@ -63,7 +63,7 @@ -#if defined(irix5) +#if defined(__sgi) /* * SGI IRIX 5 * slock_t is defined as a struct abilock_t, which has a single unsigned long @@ -87,7 +87,7 @@ #define S_LOCK_FREE(lock) (stat_lock(lock) == UNLOCKED) -#endif /* irix5 */ +#endif /* __sgi */ /* |