mirror of
https://github.com/postgres/postgres.git
synced 2025-11-14 00:05:25 -05:00
15 lines
281 B
C
15 lines
281 B
C
#if defined(__i386__) || defined(__x86_64__)
|
|
#define NEED_I386_TAS_ASM
|
|
typedef unsigned char slock_t;
|
|
#endif
|
|
#if defined(__ia64)
|
|
typedef unsigned int slock_t;
|
|
#endif
|
|
#if defined(__sparc__)
|
|
#define NEED_SPARC_TAS_ASM
|
|
typedef unsigned char slock_t;
|
|
#endif
|
|
|
|
#define HAS_TEST_AND_SET
|
|
|