xv6-simplified
0.1
简化版xv6
Loading...
Searching...
No Matches
src
include
types.h
Go to the documentation of this file.
1
10
// 非负int
11
typedef
unsigned
int
uint
;
12
// 非负short
13
typedef
unsigned
short
ushort
;
14
// 非负char
15
typedef
unsigned
char
uchar
;
16
17
// 非负char
18
typedef
unsigned
char
uint8
;
19
// 非负short
20
typedef
unsigned
short
uint16
;
21
// 非负int
22
typedef
unsigned
int
uint32
;
23
// 非负long
24
typedef
unsigned
long
uint64
;
25
26
// 页目录项类型
27
typedef
uint64
pde_t
;
uint16
unsigned short uint16
Definition
types.h:20
uint32
unsigned int uint32
Definition
types.h:22
uint64
unsigned long uint64
Definition
types.h:24
uchar
unsigned char uchar
Definition
types.h:15
uint
unsigned int uint
Definition
types.h:11
pde_t
uint64 pde_t
Definition
types.h:27
ushort
unsigned short ushort
Definition
types.h:13
uint8
unsigned char uint8
Definition
types.h:18
Generated by
1.9.7