summaryrefslogtreecommitdiff
path: root/src/include/port/netbsd.h
blob: 8b841e1a4a2a7e017c74d33ea04fe6d568f1b814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#if defined(__i386__)
#define NEED_I386_TAS_ASM
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__sparc__)
#define NEED_SPARC_TAS_ASM
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__vax__)
#define NEED_VAX_TAS_ASM
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__ns32k__)
#define NEED_NS32K_TAS_ASM
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__m68k__)
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__arm__)
#define HAS_TEST_AND_SET
typedef unsigned char slock_t;

#endif

#if defined(__mips__)
/* #	undef HAS_TEST_AND_SET */
#endif

#if defined(__alpha__)
#define HAS_TEST_AND_SET
typedef unsigned long slock_t;

#endif

#if defined(__powerpc__)
#define HAS_TEST_AND_SET
typedef unsigned int slock_t;

#endif