Subversion Repositories HelenOS

Rev

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

Rev 3022 Rev 4055
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
-
 
39
#define false 0
-
 
40
#define true 1
-
 
41
 
-
 
42
typedef signed char int8_t;
38
typedef signed char int8_t;
43
typedef signed short int16_t;
39
typedef signed short int16_t;
44
typedef signed int int32_t;
40
typedef signed int int32_t;
45
typedef signed long int64_t;
41
typedef signed long int64_t;
46
typedef struct {
42
typedef struct {
Line 67... Line 63...
67
typedef uint64_t ipl_t;
63
typedef uint64_t ipl_t;
68
 
64
 
69
typedef uint64_t unative_t;
65
typedef uint64_t unative_t;
70
typedef int64_t native_t;
66
typedef int64_t native_t;
71
 
67
 
72
typedef uint8_t bool;
68
typedef struct {
-
 
69
    unative_t fnc;
-
 
70
    unative_t gp;
-
 
71
} fncptr_t;
-
 
72
 
73
typedef uint64_t thread_id_t;
73
#define PRIp "lx"   /**< Format for uintptr_t. */
74
typedef uint64_t task_id_t;
74
#define PRIs "lu"   /**< Format for size_t. */
-
 
75
#define PRIc "lu"   /**< Format for count_t. */
75
typedef uint32_t context_id_t;
76
#define PRIi "lu"   /**< Format for index_t. */
76
 
77
 
77
typedef int32_t inr_t;
78
#define PRId8 "d"   /**< Format for int8_t. */
-
 
79
#define PRId16 "d"  /**< Format for int16_t. */
78
typedef int32_t devno_t;
80
#define PRId32 "d"  /**< Format for int32_t. */
-
 
81
#define PRId64 "ld" /**< Format for int64_t. */
-
 
82
#define PRIdn "d"   /**< Format for native_t. */
-
 
83
 
-
 
84
#define PRIu8 "u"   /**< Format for uint8_t. */
-
 
85
#define PRIu16 "u"  /**< Format for uint16_t. */
-
 
86
#define PRIu32 "u"  /**< Format for uint32_t. */
-
 
87
#define PRIu64 "lu" /**< Format for uint64_t. */
-
 
88
#define PRIun "u"   /**< Format for unative_t. */
-
 
89
 
-
 
90
#define PRIx8 "x"   /**< Format for hexadecimal (u)int8_t. */
-
 
91
#define PRIx16 "x"  /**< Format for hexadecimal (u)int16_t. */
-
 
92
#define PRIx32 "x"  /**< Format for hexadecimal (u)uint32_t. */
-
 
93
#define PRIx64 "lx" /**< Format for hexadecimal (u)int64_t. */
-
 
94
#define PRIxn "x"   /**< Format for hexadecimal (u)native_t. */
79
 
95
 
80
#endif
96
#endif
81
 
97
 
82
/** @}
98
/** @}
83
 */
99
 */