linux/sparc cleanup

This commit is contained in:
Bruce Momjian 1999-07-19 18:19:40 +00:00
parent b653d1e263
commit e2f32054f4
1 changed files with 5 additions and 1 deletions

View File

@ -6,22 +6,26 @@
*/
#define JMP_BUF
#define USE_POSIX_TIME
#define HAS_TEST_AND_SET
#if defined(__i386__)
typedef unsigned char slock_t;
#define HAS_TEST_AND_SET
#elif defined(__sparc__)
typedef unsigned char slock_t;
#define HAS_TEST_AND_SET
#elif defined(__powerpc__)
typedef unsigned int slock_t;
#define HAS_TEST_AND_SET
#elif defined(__alpha__)
typedef long int slock_t;
#define HAS_TEST_AND_SET
#elif defined(__mips__)
typedef unsigned int slock_t;
#define HAS_TEST_AND_SET
#endif