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_ia32_TYPES_H_
35
#ifndef KERN_ia32_TYPES_H_
36
#define KERN_ia32_TYPES_H_
36
#define KERN_ia32_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 long int32_t;
40
typedef signed long int32_t;
45
typedef signed long long int64_t;
41
typedef signed long long int64_t;
46
 
42
 
Line 59... Line 55...
59
typedef uint32_t ipl_t;
55
typedef uint32_t ipl_t;
60
 
56
 
61
typedef uint32_t unative_t;
57
typedef uint32_t unative_t;
62
typedef int32_t native_t;
58
typedef int32_t native_t;
63
 
59
 
64
typedef uint8_t bool;
60
typedef struct {
65
typedef uint64_t thread_id_t;
61
} fncptr_t;
66
typedef uint64_t task_id_t;
-
 
67
typedef uint32_t context_id_t;
-
 
68
 
62
 
-
 
63
#define PRIp "x"    /**< Format for uintptr_t. */
-
 
64
#define PRIs "u"    /**< Format for size_t. */
-
 
65
#define PRIc "u"    /**< Format for count_t. */
-
 
66
#define PRIi "u"    /**< Format for index_t. */
-
 
67
 
69
typedef int32_t inr_t;
68
#define PRId8 "d"   /**< Format for int8_t. */
-
 
69
#define PRId16 "d"  /**< Format for int16_t. */
70
typedef int32_t devno_t;
70
#define PRId32 "d"  /**< Format for int32_t. */
-
 
71
#define PRId64 "lld"    /**< Format for int64_t. */
-
 
72
#define PRIdn "d"   /**< Format for native_t. */
-
 
73
 
-
 
74
#define PRIu8 "u"   /**< Format for uint8_t. */
-
 
75
#define PRIu16 "u"  /**< Format for uint16_t. */
-
 
76
#define PRIu32 "u"  /**< Format for uint32_t. */
-
 
77
#define PRIu64 "llu"    /**< Format for uint64_t. */
-
 
78
#define PRIun "u"   /**< Format for unative_t. */
-
 
79
 
-
 
80
#define PRIx8 "x"   /**< Format for hexadecimal (u)int8_t. */
-
 
81
#define PRIx16 "x"  /**< Format for hexadecimal (u)int16_t. */
-
 
82
#define PRIx32 "x"  /**< Format for hexadecimal (u)uint32_t. */
-
 
83
#define PRIx64 "llx"    /**< Format for hexadecimal (u)int64_t. */
-
 
84
#define PRIxn "x"   /**< Format for hexadecimal (u)native_t. */
71
 
85
 
72
/** Page Table Entry. */
86
/** Page Table Entry. */
73
typedef struct {
87
typedef struct {
74
    unsigned present : 1;
88
    unsigned present : 1;
75
    unsigned writeable : 1;
89
    unsigned writeable : 1;