Rev 3070 | Rev 3878 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 3070 | Rev 3098 | ||
|---|---|---|---|
| Line 55... | Line 55... | ||
| 55 | typedef uint32_t ipl_t; |
55 | typedef uint32_t ipl_t; |
| 56 | 56 | ||
| 57 | typedef uint32_t unative_t; |
57 | typedef uint32_t unative_t; |
| 58 | typedef int32_t native_t; |
58 | typedef int32_t native_t; |
| 59 | 59 | ||
| - | 60 | #define PRIp "x" /**< Format for uintptr_t. */ |
|
| - | 61 | #define PRIs "u" /**< Format for size_t. */ |
|
| - | 62 | #define PRIc "u" /**< Format for count_t. */ |
|
| - | 63 | #define PRIi "u" /**< Format for index_t. */ |
|
| - | 64 | ||
| - | 65 | #define PRId8 "d" /**< Format for int8_t. */ |
|
| - | 66 | #define PRId16 "d" /**< Format for int16_t. */ |
|
| - | 67 | #define PRId32 "ld" /**< Format for int32_t. */ |
|
| - | 68 | #define PRId64 "lld" /**< Format for int64_t. */ |
|
| - | 69 | #define PRIdn "d" /**< Format for native_t. */ |
|
| - | 70 | ||
| - | 71 | #define PRIu8 "u" /**< Format for uint8_t. */ |
|
| - | 72 | #define PRIu16 "u" /**< Format for uint16_t. */ |
|
| - | 73 | #define PRIu32 "u" /**< Format for uint32_t. */ |
|
| - | 74 | #define PRIu64 "llu" /**< Format for uint64_t. */ |
|
| - | 75 | #define PRIun "u" /**< Format for unative_t. */ |
|
| - | 76 | ||
| - | 77 | #define PRIx8 "x" /**< Format for hexadecimal (u)int8_t. */ |
|
| - | 78 | #define PRIx16 "x" /**< Format for hexadecimal (u)int16_t. */ |
|
| - | 79 | #define PRIx32 "x" /**< Format for hexadecimal (u)uint32_t. */ |
|
| - | 80 | #define PRIx64 "llx" /**< Format for hexadecimal (u)int64_t. */ |
|
| - | 81 | #define PRIxn "x" /**< Format for hexadecimal (u)native_t. */ |
|
| - | 82 | ||
| 60 | /** Page Table Entry. */ |
83 | /** Page Table Entry. */ |
| 61 | typedef struct { |
84 | typedef struct { |
| 62 | unsigned g : 1; /**< Global bit. */ |
85 | unsigned g : 1; /**< Global bit. */ |
| 63 | unsigned p : 1; /**< Present bit. */ |
86 | unsigned p : 1; /**< Present bit. */ |
| 64 | unsigned d : 1; /**< Dirty bit. */ |
87 | unsigned d : 1; /**< Dirty bit. */ |