Changeset b3f8fb7 in mainline for kernel/arch/ia32xen/include/types.h
- Timestamp:
- 2007-01-28T13:25:49Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8e8c1a5
- Parents:
- 1ba41c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32xen/include/types.h
r1ba41c5 rb3f8fb7 37 37 38 38 #define NULL 0 39 #define false 0 40 #define true 1 39 41 40 42 typedef signed char int8_t; … … 48 50 typedef unsigned long long uint64_t; 49 51 52 typedef uint32_t size_t; 53 typedef uint32_t count_t; 54 typedef uint32_t index_t; 55 50 56 typedef uint32_t uintptr_t; 51 57 typedef uint32_t pfn_t; … … 56 62 typedef int32_t native_t; 57 63 58 typedef struct page_specifier pte_t; 64 typedef uint8_t bool; 65 typedef uint64_t task_id_t; 66 typedef uint32_t context_id_t; 67 68 typedef int32_t inr_t; 69 typedef int32_t devno_t; 70 71 /** Page Table Entry. */ 72 typedef struct { 73 unsigned present : 1; 74 unsigned writeable : 1; 75 unsigned uaccessible : 1; 76 unsigned page_write_through : 1; 77 unsigned page_cache_disable : 1; 78 unsigned accessed : 1; 79 unsigned dirty : 1; 80 unsigned pat : 1; 81 unsigned global : 1; 82 unsigned soft_valid : 1; /**< Valid content even if the present bit is not set. */ 83 unsigned avl : 2; 84 unsigned frame_address : 20; 85 } __attribute__ ((packed)) pte_t; 59 86 60 87 #endif
Note:
See TracChangeset
for help on using the changeset viewer.