File tree Expand file tree Collapse file tree 3 files changed +20
-12
lines changed Expand file tree Collapse file tree 3 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 1
1
#if defined(__i386__ )
2
- typedef unsigned char slock_t ;
3
-
2
+ #define NEED_I386_TAS_ASM
4
3
#define HAS_TEST_AND_SET
4
+ typedef unsigned char slock_t ;
5
5
#endif
6
6
7
7
#if defined(__sparc__ )
8
8
#define NEED_SPARC_TAS_ASM
9
9
#define HAS_TEST_AND_SET
10
- #endif
11
-
12
- #if defined(__alpha__ )
13
- typedef long int slock_t ;
14
-
15
- #define HAS_TEST_AND_SET
10
+ typedef unsigned char slock_t ;
16
11
#endif
17
12
18
13
#if defined(__vax__ )
19
- typedef unsigned char slock_t ;
20
-
21
14
#define NEED_VAX_TAS_ASM
22
15
#define HAS_TEST_AND_SET
16
+ typedef unsigned char slock_t ;
23
17
#endif
24
18
25
19
#if defined(__ns32k__ )
26
20
#define NEED_NS32K_TAS_ASM
27
21
#define HAS_TEST_AND_SET
22
+ typedef unsigned char slock_t ;
28
23
#endif
29
24
30
25
#if defined(__m68k__ )
31
26
#define HAS_TEST_AND_SET
27
+ typedef unsigned char slock_t ;
28
+ #endif
29
+
30
+ #if defined(__arm__ )
31
+ #define HAS_TEST_AND_SET
32
+ typedef unsigned char slock_t ;
32
33
#endif
33
34
34
35
#if defined(__mips__ )
35
36
/* # undef HAS_TEST_AND_SET */
37
+ #endif
38
+
39
+ #if defined(__alpha__ )
40
+ #define HAS_TEST_AND_SET
41
+ typedef unsigned long slock_t ;
42
+ #endif
36
43
44
+ #if defined(__powerpc__ )
45
+ #define HAS_TEST_AND_SET
46
+ typedef unsigned int slock_t ;
37
47
#endif
Original file line number Diff line number Diff line change @@ -44,5 +44,4 @@ typedef unsigned long slock_t;
44
44
#if defined(__powerpc__ )
45
45
#define HAS_TEST_AND_SET
46
46
typedef unsigned int slock_t ;
47
-
48
47
#endif
Original file line number Diff line number Diff line change @@ -44,5 +44,4 @@ typedef unsigned long slock_t;
44
44
#if defined(__powerpc__ )
45
45
#define HAS_TEST_AND_SET
46
46
typedef unsigned int slock_t ;
47
-
48
47
#endif
You can’t perform that action at this time.
0 commit comments