diff options
Diffstat (limited to 'src/include/port/linux.h')
-rw-r--r-- | src/include/port/linux.h | 51 |
1 files changed, 0 insertions, 51 deletions
diff --git a/src/include/port/linux.h b/src/include/port/linux.h index 159db3194f1..e69de29bb2d 100644 --- a/src/include/port/linux.h +++ b/src/include/port/linux.h @@ -1,51 +0,0 @@ -#if defined(__i386__) || defined(__x86_64__) -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(__powerpc64__) -typedef unsigned long 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 - -#elif defined(__arm__) -typedef unsigned char slock_t; - -#define HAS_TEST_AND_SET - -#elif defined(__ia64__) -typedef unsigned int slock_t; - -#define HAS_TEST_AND_SET - -#elif defined(__s390__) || defined(__s390x__) -typedef unsigned int slock_t; - -#define HAS_TEST_AND_SET - -#elif defined(__mc68000__) -typedef unsigned char slock_t; - -#define HAS_TEST_AND_SET - -#endif |