mirror of
https://github.com/0xAX/linux-insides.git
synced 2025-01-05 13:21:00 +00:00
fixed grammar in linux-bootstrap-3.md, Kernel data types section
This commit is contained in:
parent
1b3cb0df96
commit
8c7261262e
@ -46,14 +46,14 @@ which will ask to select a video mode. We will look at its implementation, but b
|
|||||||
Kernel data types
|
Kernel data types
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
|
||||||
Earlier we saw definitions of different data types like `u16` etc. in the kernel setup code. Let's look on a couple of data types provided by the kernel:
|
Earlier we saw definitions of different data types like `u16` etc. in the kernel setup code. Let's look at a couple of data types provided by the kernel:
|
||||||
|
|
||||||
|
|
||||||
| Type | char | short | int | long | u8 | u16 | u32 | u64 |
|
| Type | char | short | int | long | u8 | u16 | u32 | u64 |
|
||||||
|------|------|-------|-----|------|----|-----|-----|-----|
|
|------|------|-------|-----|------|----|-----|-----|-----|
|
||||||
| Size | 1 | 2 | 4 | 8 | 1 | 2 | 4 | 8 |
|
| Size | 1 | 2 | 4 | 8 | 1 | 2 | 4 | 8 |
|
||||||
|
|
||||||
If you read source code of the kernel, you'll see these very often and so it will be good to remember them.
|
If you the read source code of the kernel, you'll see these very often and so it will be good to remember them.
|
||||||
|
|
||||||
Heap API
|
Heap API
|
||||||
--------------------------------------------------------------------------------
|
--------------------------------------------------------------------------------
|
||||||
|
Loading…
Reference in New Issue
Block a user