1
0
mirror of https://github.com/postgres/postgres.git synced 2025-11-18 02:02:55 +03:00

More cpu cleanups, only for 6.6.

This commit is contained in:
Bruce Momjian
1999-07-13 20:12:51 +00:00
parent 540c114225
commit 050371fccd
9 changed files with 32 additions and 27 deletions

View File

@@ -8,18 +8,18 @@
#define USE_POSIX_TIME
#define HAS_TEST_AND_SET
#if defined(__powerpc__)
#if if defined(__i386__)
typedef unsigned char slock_t;
#elif defined(__powerpc__)
typedef unsigned int slock_t;
#elif defined(__alpha)
#elif defined(__alpha__)
typedef long int slock_t;
#elif defined(__mips)
#elif defined(__mips__)
typedef unsigned int slock_t;
#else /* i386 probably */
typedef unsigned char slock_t;
#endif
#if (__GLIBC__ >= 2)