Subversion Repositories HelenOS

Rev

Rev 2071 | Rev 2216 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2071 Rev 2089
Line 33... Line 33...
33
 */
33
 */
34
 
34
 
35
#ifndef KERN_ia64_TYPES_H_
35
#ifndef KERN_ia64_TYPES_H_
36
#define KERN_ia64_TYPES_H_
36
#define KERN_ia64_TYPES_H_
37
 
37
 
38
#define NULL    0
38
#define NULL 0
-
 
39
#define false 0
-
 
40
#define true 1
39
 
41
 
40
typedef signed char int8_t;
42
typedef signed char int8_t;
41
typedef signed short int int16_t;
43
typedef signed short int16_t;
42
typedef signed int int32_t;
44
typedef signed int int32_t;
43
typedef signed long int64_t;
45
typedef signed long int64_t;
-
 
46
typedef struct {
-
 
47
    int64_t lo;
-
 
48
    int64_t hi;
-
 
49
} int128_t;
44
 
50
 
45
typedef unsigned char uint8_t;
51
typedef unsigned char uint8_t;
46
typedef unsigned short uint16_t;
52
typedef unsigned short uint16_t;
47
typedef unsigned int uint32_t;
53
typedef unsigned int uint32_t;
48
typedef unsigned long uint64_t;
54
typedef unsigned long uint64_t;
-
 
55
typedef struct {
-
 
56
    uint64_t lo;
-
 
57
    uint64_t hi;
-
 
58
} uint128_t;
49
 
59
 
50
typedef unsigned char __r8;             /* Reserve byte */
-
 
51
typedef unsigned short __r16;
-
 
52
typedef unsigned int __r32;
60
typedef uint64_t size_t;
53
typedef unsigned long __r64;
61
typedef uint64_t count_t;
54
typedef struct __r128 {
62
typedef uint64_t index_t;
55
    __r64 lo;
-
 
56
    __r64 hi;
-
 
57
} __r128;
-
 
58
 
63
 
59
typedef uint64_t uintptr_t;
64
typedef uint64_t uintptr_t;
60
typedef uint64_t pfn_t;
65
typedef uint64_t pfn_t;
61
 
66
 
62
typedef uint64_t ipl_t;
67
typedef uint64_t ipl_t;
63
 
68
 
64
typedef uint64_t unative_t;
69
typedef uint64_t unative_t;
65
typedef int64_t native_t;
70
typedef int64_t native_t;
66
 
71
 
-
 
72
typedef uint8_t bool;
-
 
73
typedef uint64_t task_id_t;
-
 
74
typedef uint32_t context_id_t;
-
 
75
 
-
 
76
typedef int32_t inr_t;
67
typedef struct pte pte_t;
77
typedef int32_t devno_t;
68
 
78
 
69
#endif
79
#endif
70
 
80
 
71
/** @}
81
/** @}
72
 */
82
 */