We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In chapter "First steps in the kernel setup", section "Heap initialization" :
Then there is the heap_end calculation:
heap_end = (char *)((size_t)boot_params.hdr.heap_end_ptr + 0x200);
which means heap_end_ptr or _end + 512 (0x200h)
which is a little bit obscure, How about:
The definition of heap_end_ptr would minus 0x200, so make it up.
Check heap_end_ptr in Documentation/x86/boot.txt. Although I don't understand the "minus 0x200" in the definition
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In chapter "First steps in the kernel setup", section "Heap initialization" :
which is a little bit obscure, How about:
Check heap_end_ptr in Documentation/x86/boot.txt. Although I don't understand the "minus 0x200" in the definition
The text was updated successfully, but these errors were encountered: