This source file includes following definitions.
- label_t
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 #ifndef _I386__TYPES_H_
36 #define _I386__TYPES_H_
37
38 #if defined(_KERNEL)
39 typedef struct label_t {
40 int val[6];
41 } label_t;
42 #endif
43
44
45 typedef __signed char __int8_t;
46 typedef unsigned char __uint8_t;
47 typedef short __int16_t;
48 typedef unsigned short __uint16_t;
49 typedef int __int32_t;
50 typedef unsigned int __uint32_t;
51
52 typedef long long __int64_t;
53
54 typedef unsigned long long __uint64_t;
55
56
57 typedef __int8_t __int_least8_t;
58 typedef __uint8_t __uint_least8_t;
59 typedef __int16_t __int_least16_t;
60 typedef __uint16_t __uint_least16_t;
61 typedef __int32_t __int_least32_t;
62 typedef __uint32_t __uint_least32_t;
63 typedef __int64_t __int_least64_t;
64 typedef __uint64_t __uint_least64_t;
65
66
67 typedef __int32_t __int_fast8_t;
68 typedef __uint32_t __uint_fast8_t;
69 typedef __int32_t __int_fast16_t;
70 typedef __uint32_t __uint_fast16_t;
71 typedef __int32_t __int_fast32_t;
72 typedef __uint32_t __uint_fast32_t;
73 typedef __int64_t __int_fast64_t;
74 typedef __uint64_t __uint_fast64_t;
75
76
77 typedef long __intptr_t;
78 typedef unsigned long __uintptr_t;
79
80
81 typedef __int64_t __intmax_t;
82 typedef __uint64_t __uintmax_t;
83
84
85 typedef __int32_t __register_t;
86
87
88 typedef unsigned long __vaddr_t;
89 typedef unsigned long __paddr_t;
90 typedef unsigned long __vsize_t;
91 typedef unsigned long __psize_t;
92
93
94 typedef int __clock_t;
95 typedef int __clockid_t;
96 typedef long long __off_t;
97 typedef long __ptrdiff_t;
98 typedef unsigned long __size_t;
99 typedef long __ssize_t;
100 typedef int __time_t;
101 typedef int __timer_t;
102 #if defined(__GNUC__) && __GNUC__ >= 3
103 typedef __builtin_va_list __va_list;
104 #else
105 typedef char * __va_list;
106 #endif
107
108
109 #ifndef __cplusplus
110 typedef int __wchar_t;
111 #endif
112 typedef int __wint_t;
113 typedef int __rune_t;
114 typedef void * __wctrans_t;
115 typedef void * __wctype_t;
116
117
118 #define __HAVE_TIMECOUNTER
119
120 #endif