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